frostbyte-native/src/util/style.ts

26 lines
585 B
TypeScript
Raw Normal View History

2023-12-14 20:21:57 +01:00
import { StyleSheet } from 'react-native';
export const style = StyleSheet.create({
app: { // Outermost container
flex: 1,
backgroundColor: '#fff', // For the "entire" app
alignItems: 'center',
justifyContent: 'center',
},
postsContainer: {
height: '100%',
padding: 5,
flex: 1,
alignItems: 'center',
justifyContent: 'flex-start',
backgroundColor: '#fff', // For the container holding the posts
},
postView: {
flexDirection: "row",
backgroundColor: '#fff',
paddingVertical: 5,
},
postFont: {
color: "#000",
},
});