styles.ts 879 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. flex: 1,
  14. fontFamily: 'redhat-700',
  15. color: Colors.DARK_BLUE,
  16. fontSize: getFontSize(14)
  17. },
  18. titleText: {
  19. flex: 1,
  20. color: Colors.DARK_BLUE,
  21. fontWeight: '600',
  22. fontSize: getFontSize(13)
  23. },
  24. countryFlag: {
  25. width: 20,
  26. height: 20,
  27. borderRadius: 20 / 2,
  28. borderWidth: 0.5,
  29. borderColor: 'gray'
  30. },
  31. settingsButton: {
  32. width: 40,
  33. height: 40,
  34. borderRadius: 40 / 2,
  35. borderWidth: 1,
  36. borderColor: Colors.LIGHT_GRAY,
  37. display: 'flex',
  38. justifyContent: 'center',
  39. alignItems: 'center'
  40. }
  41. });