scrollbar styling

This commit is contained in:
Nathaniel Tampus
2023-03-06 18:19:47 +08:00
parent b98e4a23a9
commit 99b73fb1c1
2 changed files with 16 additions and 2 deletions

View File

@@ -1,3 +1,17 @@
@tailwind base;
* {
scrollbar-width: thin;
}
*::-webkit-scrollbar {
width: 4px;
}
*::-webkit-scrollbar-thumb {
@apply bg-slate-500;
border-radius: 2px;
}
@tailwind components;
@tailwind utilities;