feat: add themed scrollbar styling for light and dark modes

This commit is contained in:
Your Name
2026-02-15 20:34:04 +02:00
parent 37fd56b43f
commit d1a10ae8ff

View File

@@ -142,6 +142,11 @@
@layer base { @layer base {
* { * {
@apply border-border outline-ring/50; @apply border-border outline-ring/50;
scrollbar-width: thin;
scrollbar-color: oklch(50% 0 0 / 20%) transparent;
}
.dark * {
scrollbar-color: oklch(80% 0 0 / 15%) transparent;
} }
body { body {
@apply bg-background text-foreground; @apply bg-background text-foreground;