mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
Add scrollbar style
This commit is contained in:
+20
-1
@@ -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
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user