teeny scrollbars

This commit is contained in:
legop3
2026-05-10 01:19:25 -04:00
parent b2cae9bfa4
commit 4971edbb59
4 changed files with 14 additions and 8 deletions
+11 -5
View File
@@ -14,9 +14,15 @@ body {
@apply bg-black text-slate-100;
}
html,
body {
scrollbar-width: thin;
scrollbar-color: rgba(148, 163, 184, 0.55) transparent;
}
* {
scrollbar-width: thin;
scrollbar-color: #3b82f6 rgba(255, 255, 255, 0.08);
scrollbar-color: rgba(148, 163, 184, 0.55) transparent;
}
@keyframes spin {
@@ -29,16 +35,16 @@ body {
}
*::-webkit-scrollbar {
width: 1px;
height: 1px;
width: 2px;
height: 2px;
}
*::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.08);
background: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: #3b82f6;
background-color: rgba(148, 163, 184, 0.55);
border-radius: 9999px;
}