diff --git a/src/styles/global.css b/src/styles/global.css new file mode 100644 index 0000000..72dfd9d --- /dev/null +++ b/src/styles/global.css @@ -0,0 +1,20 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +html, +body { + @apply w-screen h-screen overflow-x-hidden; +} + +body { + @apply m-0 p-0; +} + +a { + @apply text-primary hover:text-primary-focus focus:text-primary-focus; +} + +li > a { + @apply hover:text-inherit focus:text-primary-content focus:bg-primary; +}