feature: make scrollbar nicer

This commit is contained in:
Fernando López Guevara 2024-03-18 09:42:25 -03:00
parent 1be84f3139
commit f72eb456e8

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;