styles.tsx 902 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. megaSelector: {
  5. flexDirection: 'row',
  6. alignItems: 'center',
  7. paddingHorizontal: 12,
  8. paddingVertical: 8,
  9. borderRadius: 6,
  10. backgroundColor: Colors.FILL_LIGHT,
  11. justifyContent: 'space-between',
  12. marginBottom: 16
  13. },
  14. megaButtonText: {
  15. color: Colors.DARK_BLUE,
  16. fontWeight: 'bold',
  17. fontSize: 13
  18. },
  19. progressHeader: {
  20. flexDirection: 'row',
  21. justifyContent: 'space-between',
  22. alignItems: 'center',
  23. marginBottom: 8
  24. },
  25. textSmall: {
  26. color: Colors.DARK_BLUE,
  27. fontWeight: '600',
  28. fontSize: 12
  29. },
  30. buttonContainer: {
  31. flexDirection: 'row',
  32. justifyContent: 'space-between',
  33. alignItems: 'center',
  34. marginBottom: 16
  35. },
  36. textMedium: { fontWeight: 'bold', fontSize: 14, color: Colors.DARK_BLUE },
  37. });