@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
25 lines (23 loc) • 438 B
CSS
@import "tailwindcss";
@layer base {
* {
::-webkit-scrollbar {
@apply h-2 w-2;
}
::-webkit-scrollbar-track {
@apply bg-background;
}
::-webkit-scrollbar-thumb {
@apply bg-border rounded;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-border/80;
}
::-webkit-scrollbar-button {
@apply hidden;
}
::-webkit-scrollbar-corner {
@apply bg-background;
}
}
}