mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 10:18:23 +00:00
Use custom light mode scrollbar in browsers with ::-webkit-scrollbar
This commit is contained in:
parent
c492881096
commit
39d1b3ed22
24
src/App.vue
24
src/App.vue
@ -100,6 +100,30 @@ b {
|
|||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
background-color: #d1d5db;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #4b4f52;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background-color: #5b6469;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb:active {
|
||||||
|
background-color: #485053;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-corner {
|
||||||
|
background-color: #0b0e0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
scrollbar-color: #4b4f52 #d1d5db;
|
||||||
|
}
|
||||||
|
|
||||||
.dark ::-webkit-scrollbar {
|
.dark ::-webkit-scrollbar {
|
||||||
background-color: #15191a;
|
background-color: #15191a;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user