mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-11 20:32:56 +08:00
Add override for the scrollbar
This commit is contained in:
parent
ce27b005f8
commit
db8aa3f6f1
@ -1,6 +1,7 @@
|
|||||||
html {
|
html {
|
||||||
--background-color: #346b77;
|
--background-color: #346b77;
|
||||||
--secondary-color: #418493;
|
--secondary-color: #418493;
|
||||||
|
--accent-color: #5abcb9;
|
||||||
|
|
||||||
--text-primary-color: #FFFFFF;
|
--text-primary-color: #FFFFFF;
|
||||||
|
|
||||||
@ -42,3 +43,16 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: var(--accent-color);
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user