stylesheet.ts 1013 B

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