| 123456789101112131415161718192021 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- @layer base {
- html,
- body {
- @apply text-prisma-900 p-0 m-0;
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
- Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
- }
- a {
- color: inherit;
- text-decoration: none;
- }
- * {
- box-sizing: border-box;
- }
- }
|