stylesheet.ts 847 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. container: {
  6. flex: 1
  7. },
  8. contentContainer: {
  9. maxWidth: 850,
  10. width: "100%"
  11. },
  12. scrollContent: {
  13. justifyContent: "center",
  14. alignItems: "center"
  15. },
  16. descText: {
  17. marginBottom: 20
  18. },
  19. previewContainer: {
  20. justifyContent: "center",
  21. alignItems: "center",
  22. minHeight: 120
  23. },
  24. rowContainer: {
  25. alignItems: "center",
  26. justifyContent: "space-between",
  27. flexDirection: "row",
  28. flexWrap: "wrap",
  29. width: "100%"
  30. },
  31. switchesContainer: {
  32. justifyContent: "space-between",
  33. alignItems: "center",
  34. flexDirection: "row",
  35. flexWrap: "wrap",
  36. width: "100%"
  37. }
  38. });
  39. export default stylesheet;