Spaces:
Running
Running
File size: 470 Bytes
f969af4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-slate-950 text-slate-200 antialiased transition-colors duration-200;
}
html.dark body {
@apply bg-slate-950 text-slate-200;
}
html:not(.dark) body {
@apply bg-gray-50 text-slate-900;
}
}
@layer utilities {
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
} |