Avoid text jump when the stream is paused

When the scrollbar goes from display none to being visible, the
text beside it can jump in-place. This change avoids that by making
the scrollbar invisible.
This commit is contained in:
0x1eef 2023-12-04 05:27:06 -03:00
parent 8e364f6a43
commit ac9992ece8

View file

@ -50,8 +50,12 @@ body .root .content.theme {
ul.body.stream.playing {
overflow-y: auto;
&::-webkit-scrollbar {
display: none;
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active,
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
background-color: #FFF;
}
}