globals.css 634 B

12345678910111213141516171819202122232425262728293031323334353637
  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. }