1
0
mirror of https://github.com/jdan/98.css.git synced 2025-03-14 15:49:57 +01:00

fix horizontal scrollbar styles

This commit is contained in:
Jordan Scales 2020-04-18 11:19:13 -04:00
parent 0e9c29ab58
commit 0cbf7e5305

View File

@ -352,12 +352,19 @@ a:focus {
#panel {
width: 168px;
height: 120px;
overflow-y: scroll;
overflow: scroll;
}
::-webkit-scrollbar {
width: 16px;
}
::-webkit-scrollbar:horizontal {
height: 17px;
}
::-webkit-scrollbar-corner {
background: var(--button-face);
}
::-webkit-scrollbar-track {
background-image: url("./scrollbar-background.svg");
@ -377,11 +384,11 @@ a:focus {
background-image: url("./button-down.svg");
}
::-webkit-scrollbar-button:horizontal:start {
height: 17px;
width: 16px;
background-image: url("./button-left.svg");
}
::-webkit-scrollbar-button:horizontal:end {
height: 17px;
width: 16px;
background-image: url("./button-right.svg");
}