Skip to content

Commit

Permalink
Update scrollbars.css
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed Dec 11, 2024
1 parent c23b9e1 commit 921256e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions css/components/scrollbars.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@
/* Firefox scrollbar styles */
* {
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
scrollbar-width: thin;
scrollbar-width: auto;
}

/* Webkit scrollbar styles */
::-webkit-scrollbar {
width: 8px;
height: 8px;
width: 12px;
height: 12px;
}

::-webkit-scrollbar-track {
background: var(--scrollbar-track);
border-radius: 4px;
border-radius: 6px;
}

::-webkit-scrollbar-thumb {
background: var(--scrollbar-thumb);
border-radius: 4px;
border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
Expand All @@ -46,7 +46,7 @@
.simple-mode-container,
.advanced-mode-container {
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
scrollbar-width: thin;
scrollbar-width: auto;
}

.categories-sidebar::-webkit-scrollbar,
Expand All @@ -55,8 +55,8 @@
.context-builder::-webkit-scrollbar,
.simple-mode-container::-webkit-scrollbar,
.advanced-mode-container::-webkit-scrollbar {
width: 8px;
height: 8px;
width: 12px;
height: 12px;
}

.categories-sidebar::-webkit-scrollbar-track,
Expand All @@ -66,7 +66,7 @@
.simple-mode-container::-webkit-scrollbar-track,
.advanced-mode-container::-webkit-scrollbar-track {
background: var(--scrollbar-track);
border-radius: 4px;
border-radius: 6px;
}

.categories-sidebar::-webkit-scrollbar-thumb,
Expand All @@ -76,7 +76,7 @@
.simple-mode-container::-webkit-scrollbar-thumb,
.advanced-mode-container::-webkit-scrollbar-thumb {
background: var(--scrollbar-thumb);
border-radius: 4px;
border-radius: 6px;
}

.categories-sidebar::-webkit-scrollbar-thumb:hover,
Expand Down

0 comments on commit 921256e

Please sign in to comment.