styles.tsx 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. centeredView: {
  5. backgroundColor: Colors.WHITE,
  6. borderRadius: 15
  7. },
  8. modalView: {
  9. marginLeft: '5%',
  10. marginRight: '5%',
  11. marginTop: '5%',
  12. marginBottom: '5%',
  13. shadowColor: 'rgba(0, 0, 0, 0.05)',
  14. shadowOffset: {
  15. width: 0,
  16. height: 10
  17. },
  18. shadowOpacity: 0.05,
  19. shadowRadius: 15,
  20. elevation: 5
  21. },
  22. modalContent: {
  23. display: 'flex',
  24. alignItems: 'center'
  25. },
  26. modalTitle: {
  27. marginBottom: 15,
  28. textAlign: 'center',
  29. fontWeight: 'bold',
  30. fontSize: 18,
  31. color: Colors.DARK_BLUE
  32. },
  33. modalText: {
  34. marginBottom: 24,
  35. textAlign: 'left',
  36. color: Colors.DARK_BLUE,
  37. fontWeight: '500',
  38. fontSize: 14,
  39. lineHeight: 20,
  40. },
  41. buttonContainer: {
  42. flexDirection: 'row',
  43. marginBottom: 20,
  44. gap: 15
  45. },
  46. });