styles.tsx 367 B

12345678910111213141516
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. background: { height: '100%', flex: 1 },
  5. contentContainerStyle: { gap: 16, paddingBottom: 16 },
  6. wrapper: {
  7. display: 'flex',
  8. height: '100%'
  9. },
  10. text: {
  11. fontSize: 14,
  12. fontWeight: '400',
  13. color: Colors.DARK_BLUE
  14. }
  15. });