styles.tsx 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. tabContainer: { flexDirection: 'row', gap: 16, alignItems: 'center', marginBottom: 8 },
  5. noTripsContainer: { flex: 1, alignItems: 'center', justifyContent: 'center', gap: 10 },
  6. regionSelector: {
  7. flexDirection: 'row',
  8. alignItems: 'center',
  9. justifyContent: 'space-between',
  10. backgroundColor: 'rgba(250, 250, 250, 1)',
  11. borderRadius: 4,
  12. height: 34,
  13. flex: 1,
  14. paddingHorizontal: 16
  15. },
  16. regionText: {
  17. fontSize: 14,
  18. color: Colors.LIGHT_GRAY,
  19. fontWeight: '500'
  20. },
  21. addNewTab: {
  22. flex: 1,
  23. backgroundColor: Colors.ORANGE,
  24. height: 36,
  25. borderRadius: 4,
  26. flexDirection: 'row',
  27. alignItems: 'center',
  28. justifyContent: 'center',
  29. paddingHorizontal: 16,
  30. gap: 4
  31. },
  32. addNewTabText: { fontSize: 14, color: Colors.WHITE, fontWeight: 'bold' },
  33. noTripsIcon: {
  34. height: 256,
  35. width: 256,
  36. borderRadius: 128,
  37. backgroundColor: '#FAFAFA',
  38. alignItems: 'center',
  39. justifyContent: 'center'
  40. },
  41. noTripsText: { color: Colors.DARK_BLUE, fontSize: 11, fontWeight: '600' },
  42. tripsList: {
  43. flex: 1
  44. },
  45. tripsListContentContainer: {
  46. paddingBottom: 16
  47. }
  48. });