[UI] Better default scrollbar width on Webkit.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
12a043d67e
commit
a2a07afc05
2 changed files with 9 additions and 1 deletions
|
@ -250,6 +250,8 @@ $header-height: 3.25em;
|
|||
}
|
||||
|
||||
.extension-container {
|
||||
max-width: calc(100% - 1em);
|
||||
|
||||
.extension {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
@ -52,7 +52,13 @@ a {
|
|||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 0.75em;
|
||||
width: 0.5em;
|
||||
height: 0.5em;
|
||||
|
||||
@include until($tablet) {
|
||||
width: 0.3333em;
|
||||
height: 0.3333em;
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
|
|
Loading…
Reference in a new issue