Merge pull request #174 from fernandolguevara/minors/styling-scrollbar

feature: make scrollbar nicer
This commit is contained in:
Ren Amamiya
2024-03-19 07:10:28 +07:00
committed by GitHub

View File

@@ -1,6 +1,18 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind components;
*::-webkit-scrollbar {
@apply w-[5px];
}
*::-webkit-scrollbar-track {
@apply bg-white dark:bg-black;
}
*::-webkit-scrollbar-thumb {
@apply bg-black dark:bg-white rounded;
}
html {
font-size: 14px;