feat: scrollbar styles

This commit is contained in:
2025-04-07 16:06:28 +03:00
parent 554ee083ab
commit 083a0f27c0

View File

@@ -3,3 +3,19 @@
:root { :root {
font-family: "Montserrat", sans-serif; font-family: "Montserrat", sans-serif;
} }
@layer base {
::-webkit-scrollbar {
@apply w-2;
}
::-webkit-scrollbar-track {
@apply bg-gray-100;
}
::-webkit-scrollbar-thumb {
@apply rounded-full bg-gray-300;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-gray-500;
}
}