18 lines
324 B
CSS
18 lines
324 B
CSS
@import "tailwindcss";
|
|
@config "./tailwind.config.js";
|
|
@plugin "daisyui";
|
|
|
|
@layer base {
|
|
|
|
html,
|
|
body {
|
|
@apply min-h-[100dvh] w-full overflow-hidden bg-base-100 text-base-content overscroll-y-none;
|
|
}
|
|
}
|
|
|
|
/* Fix for iOS click/blur events */
|
|
@media (hover: none) {
|
|
body {
|
|
cursor: pointer;
|
|
}
|
|
} |