globals.css 335 B

1234567891011121314151617181920
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. html,
  5. body {
  6. padding: 0;
  7. margin: 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. }