1234567891011121314151617181920212223242526272829303132333435363738 |
- import { StyleSheet } from 'react-native';
- import { Colors } from 'src/theme';
- export const styles = StyleSheet.create({
- megaSelector: {
- flexDirection: 'row',
- alignItems: 'center',
- paddingHorizontal: 12,
- paddingVertical: 8,
- borderRadius: 6,
- backgroundColor: Colors.FILL_LIGHT,
- justifyContent: 'space-between',
- marginBottom: 16
- },
- megaButtonText: {
- color: Colors.DARK_BLUE,
- fontWeight: 'bold',
- fontSize: 13
- },
- progressHeader: {
- flexDirection: 'row',
- justifyContent: 'space-between',
- alignItems: 'center',
- marginBottom: 8
- },
- textSmall: {
- color: Colors.DARK_BLUE,
- fontWeight: '600',
- fontSize: 12
- },
- buttonContainer: {
- flexDirection: 'row',
- justifyContent: 'space-between',
- alignItems: 'center',
- marginBottom: 16
- },
- textMedium: { fontWeight: 'bold', fontSize: 14, color: Colors.DARK_BLUE },
- });
|