fix scrollbar

This commit is contained in:
p2405951
2026-01-12 15:02:43 +01:00
parent e38fdc11ab
commit 5059e51e3f
@@ -167,3 +167,23 @@
font-size: 48px;
}
}
/* scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(100, 100, 100, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(100, 100, 100, 0.5);
}