Scrollbar fixed

This commit is contained in:
Christopher
2026-01-22 10:53:43 -08:00
parent f589635d03
commit b0b765b3ae
+10 -6
View File
@@ -1315,20 +1315,24 @@ a.btn-primary:visited {
/* Scrollbar Styling */ /* Scrollbar Styling */
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 10px; width: 6px;
height: 10px; height: 6px;
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background: var(--background); background: transparent;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background: var(--border); background-color: transparent;
border-radius: var(--radius-full); border-radius: var(--radius-full);
border: 2px solid var(--background); /* Creates a padding effect */ }
/* Show scrollbar thumb when hovering over the scrollable element */
*:hover::-webkit-scrollbar-thumb {
background-color: var(--foreground-tertiary);
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background: var(--border-hover); background-color: var(--foreground-secondary);
} }