mirror of
https://github.com/sussy-code/smov.git
synced 2026-05-01 04:44:30 +00:00
15 lines
383 B
CSS
15 lines
383 B
CSS
.popout-wrapper ::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.popout-wrapper ::-webkit-scrollbar-thumb {
|
|
background-color: theme("colors.denim-500");
|
|
border: 5px solid transparent;
|
|
border-left: 0;
|
|
background-clip: content-box;
|
|
}
|
|
|
|
.popout-wrapper ::-webkit-scrollbar {
|
|
/* For some reason the styles don't get applied without the width */
|
|
width: 13px;
|
|
}
|