style.ts 427 B

123456789101112131415161718192021
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from '../../theme';
  3. export const styles = StyleSheet.create({
  4. drawer: {
  5. width: '100%',
  6. height: 1,
  7. backgroundColor: '#E5E5E5'
  8. },
  9. wrapper: {
  10. backgroundColor: Colors.WHITE,
  11. paddingLeft: 15,
  12. paddingRight: 15,
  13. borderTopLeftRadius: 10,
  14. borderTopRightRadius: 10
  15. },
  16. modal: {
  17. justifyContent: 'flex-end',
  18. margin: 0,
  19. },
  20. });