styles.tsx 901 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. columnWrapper: {
  5. justifyContent: 'space-between'
  6. },
  7. image: {
  8. borderRadius: 8
  9. },
  10. title: { color: '#808080', fontSize: 12, fontWeight: '500', paddingBottom: 16 },
  11. regionSelector: {
  12. flexDirection: 'row',
  13. alignItems: 'center',
  14. paddingHorizontal: 16,
  15. borderRadius: 4,
  16. height: 36,
  17. backgroundColor: 'rgba(250, 250, 250, 1)',
  18. justifyContent: 'flex-start',
  19. gap: 10
  20. },
  21. regionText: {
  22. fontSize: 15,
  23. color: Colors.LIGHT_GRAY
  24. },
  25. itemContainer: { alignItems: 'center', marginVertical: 8 },
  26. deleteTemp: {
  27. position: 'absolute',
  28. right: -5,
  29. top: -5,
  30. padding: 10
  31. },
  32. btnContainer: {
  33. flexDirection: 'row',
  34. justifyContent: 'space-between',
  35. alignItems: 'center',
  36. gap: 15,
  37. width: '85%'
  38. }
  39. });