stylesheet.ts 656 B

123456789101112131415161718192021222324252627282930313233343536
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. container: {
  6. position: "absolute",
  7. display: "flex",
  8. zIndex: 99994,
  9. bottom: 0,
  10. right: 0,
  11. left: 0,
  12. top: 0
  13. },
  14. overlay: {
  15. position: "absolute",
  16. zIndex: 99995,
  17. bottom: 0,
  18. right: 0,
  19. left: 0,
  20. top: 0
  21. },
  22. overlayContent: {
  23. position: "absolute",
  24. zIndex: 99996,
  25. bottom: 0,
  26. right: 0,
  27. left: 0,
  28. top: 0
  29. },
  30. content: {
  31. display: "contents",
  32. zIndex: 99997
  33. }
  34. });
  35. export default stylesheet;