@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
22 lines (18 loc) • 408 B
text/typescript
/**
* Theme map
*/
import { StyleSheet } from 'react-native';
import { Colors } from '../Colors';
export const MinimizedViewTheme = StyleSheet.create({
view: {
padding: 16,
backgroundColor: Colors.primary[100],
display: 'flex',
flexDirection: 'row',
flexWrap: 'nowrap',
justifyContent: 'space-between',
},
flex: {
alignSelf: 'flex-start',
},
});