25 lines
458 B
CSS
25 lines
458 B
CSS
|
/* Custom scrollbar styling */
|
||
|
::-webkit-scrollbar {
|
||
|
width: 8px;
|
||
|
height: 8px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-track {
|
||
|
background: var(--dark-bg);
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background: var(--text-muted);
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
::-webkit-scrollbar-thumb:hover {
|
||
|
background: var(--text-color);
|
||
|
}
|
||
|
|
||
|
/* Firefox scrollbar styling */
|
||
|
* {
|
||
|
scrollbar-width: thin;
|
||
|
scrollbar-color: var(--text-muted) var(--dark-bg);
|
||
|
}
|