stylesheet.ts 448 B

1234567891011121314151617181920212223242526
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. contentContainer: {
  6. padding: 20,
  7. width: "100%"
  8. },
  9. modalContent: {
  10. backgroundColor: "white",
  11. borderRadius: 10,
  12. padding: 20,
  13. gap: 20
  14. },
  15. scrollContent: {
  16. flexGrow: 1
  17. },
  18. container: {
  19. flex: 1
  20. },
  21. title: {
  22. marginBottom: 20
  23. }
  24. });
  25. export default stylesheet;