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 e4edc201b9
commit 46c0df3ab8

View File

@@ -142,6 +142,11 @@
@layer base {
* {
@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 {
@apply bg-background text-foreground;