styles.tsx 932 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. countrySelector: {
  6. flexDirection: 'row',
  7. alignItems: 'center',
  8. justifyContent: 'space-between',
  9. backgroundColor: Colors.FILL_LIGHT,
  10. borderRadius: 4,
  11. height: 34,
  12. flex: 1,
  13. paddingHorizontal: 16
  14. },
  15. countryText: {
  16. fontSize: 14,
  17. color: Colors.LIGHT_GRAY,
  18. fontWeight: '500'
  19. },
  20. addNewTab: {
  21. flex: 1,
  22. backgroundColor: Colors.ORANGE,
  23. height: 36,
  24. borderRadius: 4,
  25. flexDirection: 'row',
  26. alignItems: 'center',
  27. justifyContent: 'center',
  28. paddingHorizontal: 16,
  29. gap: 4
  30. },
  31. addNewTabText: { fontSize: 14, color: Colors.WHITE, fontWeight: 'bold' },
  32. fixersList: {
  33. flex: 1
  34. },
  35. fixersListContentContainer: {
  36. paddingBottom: 16
  37. }
  38. });