styles.ts 537 B

12345678910111213141516171819202122232425
  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. width: 20,
  19. height: 20,
  20. borderRadius: 20 / 2,
  21. borderWidth: 0.5,
  22. borderColor: 'gray'
  23. }
  24. });