globals.css 384 B

123456789101112131415161718192021
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer base {
  5. html,
  6. body {
  7. @apply text-prisma-900 p-0 m-0;
  8. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
  9. Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  10. }
  11. a {
  12. color: inherit;
  13. text-decoration: none;
  14. }
  15. * {
  16. box-sizing: border-box;
  17. }
  18. }