styles.ts 506 B

1234567891011121314151617181920212223
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../../theme';
  3. import { getFontSize } from '../../../utils';
  4. export const styles = StyleSheet.create({
  5. pageWrapper: {
  6. display: 'flex',
  7. flexDirection: 'row',
  8. alignItems: 'center',
  9. marginTop: 20,
  10. gap: 20
  11. },
  12. headerText: {
  13. fontFamily: 'redhat-700',
  14. color: Colors.DARK_BLUE,
  15. fontSize: getFontSize(14)
  16. },
  17. countryFlag: {
  18. borderRadius: 20 / 2,
  19. borderWidth: 0.5,
  20. borderColor: 'gray'
  21. }
  22. });