style.ts 695 B

123456789101112131415161718192021222324252627282930313233
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../theme';
  3. import { getFontSize } from '../../utils';
  4. export const styles = StyleSheet.create({
  5. wrapper: {
  6. display: 'flex',
  7. flexDirection: 'row',
  8. alignItems: 'center',
  9. justifyContent: 'space-between',
  10. width: '100%',
  11. marginTop: '5%',
  12. marginBottom: '5%'
  13. },
  14. chevronWrapper: {
  15. width: 25,
  16. height: 25,
  17. display: 'flex',
  18. justifyContent: 'center',
  19. alignItems: 'center'
  20. },
  21. label: {
  22. fontFamily: 'redhat-700',
  23. fontSize: getFontSize(14),
  24. color: Colors.DARK_BLUE,
  25. flexShrink: 1,
  26. paddingHorizontal: 2
  27. },
  28. placeholder: {
  29. width: 25,
  30. height: 25
  31. }
  32. });