Remove borders from scrollbar gutters.

Leave for moving UI vertical
This commit is contained in:
Cohee 2024-05-02 23:06:16 +03:00
parent 73bea1f454
commit 203146f7e2
1 changed files with 4 additions and 2 deletions

View File

@ -155,17 +155,19 @@ body {
border-radius: 10px;
background-clip: content-box;
border: 2px solid transparent;
border-top: 20px solid transparent;
min-height: 40px;
}
body.movingUI ::-webkit-scrollbar-thumb:vertical {
border-top: 20px solid transparent;
}
::-webkit-scrollbar-thumb:horizontal {
background-color: var(--grey7070a);
box-shadow: inset 0 0 0 1px var(--black50a);
border-radius: 10px;
background-clip: content-box;
border: 2px solid transparent;
border-left: 20px solid transparent;
min-width: 40px;
}