Add scrollbar style

This commit is contained in:
VnPower
2023-10-21 19:33:09 +07:00
parent e7d1ca7362
commit 67bcdf5dcf
2 changed files with 40 additions and 2 deletions
+20 -1
View File
@@ -1,5 +1,4 @@
html {
scrollbar-color: #666 #201c29;
font-size: 62.5%;
}
@@ -20,6 +19,26 @@ a {
text-decoration: none;
}
/* Scrollbars */
* {
scrollbar-width: thin;
scrollbar-color: #118bee auto;
}
*::-webkit-scrollbar {
width: 5px;
height: 5px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: #118bee;
border-radius: 10px;
}
.special-symbol {
display: inline-flex;
align-items: center;
+20 -1
View File
@@ -15,7 +15,6 @@ $small-artwork-width: 184px;
$large-artwork-width: 288px;
html {
scrollbar-color: #666 #201c29;
font-size: 62.5%;
}
@@ -39,6 +38,26 @@ a {
text-decoration: none;
}
/* Scrollbars */
* {
scrollbar-width: thin;
scrollbar-color: $link auto;
}
*::-webkit-scrollbar {
width: 5px;
height: 5px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background-color: $link;
border-radius: 10px;
}
.special-symbol {
display: inline-flex;
align-items: center;