styles.tsx 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. btnOption: {
  5. paddingHorizontal: 16,
  6. paddingVertical: 9,
  7. flexDirection: 'row',
  8. alignItems: 'center',
  9. gap: 16
  10. },
  11. btnOptionText: { fontSize: 16, fontWeight: '600', color: Colors.DARK_BLUE },
  12. wrapper: {
  13. backgroundColor: Colors.WHITE,
  14. padding: 16,
  15. borderTopLeftRadius: 10,
  16. borderTopRightRadius: 10,
  17. height: '86%'
  18. },
  19. modal: {
  20. justifyContent: 'flex-end',
  21. margin: 0
  22. },
  23. megaSelector: {
  24. flexDirection: 'row',
  25. alignItems: 'center',
  26. paddingHorizontal: 12,
  27. paddingVertical: 8,
  28. borderRadius: 6,
  29. backgroundColor: Colors.DARK_LIGHT,
  30. justifyContent: 'space-between',
  31. marginBottom: 8
  32. },
  33. megaButtonText: {
  34. color: Colors.DARK_BLUE,
  35. fontWeight: 'bold',
  36. fontSize: 13
  37. },
  38. progressHeader: {
  39. flexDirection: 'row',
  40. justifyContent: 'space-between',
  41. alignItems: 'center',
  42. marginBottom: 8
  43. },
  44. visitedCountriesCount: {
  45. color: Colors.DARK_BLUE,
  46. fontWeight: '600',
  47. fontSize: 12
  48. },
  49. slowScoreSection: {
  50. flexDirection: 'row',
  51. alignItems: 'center',
  52. justifyContent: 'space-between',
  53. paddingTop: 8
  54. },
  55. infoBtn: { paddingVertical: 8, paddingLeft: 16 }
  56. });