globals.css 718 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. :root {
  5. --background: #ffffff;
  6. --foreground: #171717;
  7. }
  8. @media (prefers-color-scheme: dark) {
  9. :root {
  10. --background: #0a0a0a;
  11. --foreground: #ededed;
  12. }
  13. }
  14. body {
  15. color: var(--foreground);
  16. background: var(--background);
  17. font-family: Arial, Helvetica, sans-serif;
  18. }
  19. @layer utilities {
  20. .text-balance {
  21. text-wrap: balance;
  22. }
  23. .no-scrollbar::-webkit-scrollbar {
  24. display: none;
  25. }
  26. /* Hide scrollbar for IE, Edge and Firefox */
  27. .no-scrollbar {
  28. -ms-overflow-style: none; /* IE and Edge */
  29. scrollbar-width: none; /* Firefox */
  30. }
  31. }
  32. .ql-align-center {
  33. text-align: center;
  34. }
  35. .ql-align-left {
  36. text-align: left;
  37. }