globals.css 383 B

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