styles.ts 733 B

1234567891011121314151617181920212223242526272829303132333435
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../../../theme';
  3. export const styles = StyleSheet.create({
  4. dropdown: {
  5. width: 150,
  6. height: 40,
  7. backgroundColor: '#F4F4F4',
  8. borderRadius: 4,
  9. paddingHorizontal: 8
  10. },
  11. placeholderStyle: {
  12. fontSize: 16,
  13. color: Colors.DARK_BLUE
  14. },
  15. selectedTextStyle: {
  16. fontSize: 16,
  17. color: Colors.DARK_BLUE
  18. },
  19. ageAndRankingWrapper: {
  20. width: '100%',
  21. display: 'flex',
  22. flexDirection: 'row',
  23. alignItems: 'center',
  24. justifyContent: 'space-between',
  25. marginTop: 20
  26. },
  27. buttonsWrapper: {
  28. width: '100%',
  29. display: 'flex',
  30. justifyContent: 'space-between',
  31. flexDirection: 'row',
  32. marginTop: 15
  33. }
  34. });