[UI] Better default scrollbar width on Webkit.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabio Manganiello 2023-12-30 13:41:45 +01:00
parent 12a043d67e
commit a2a07afc05
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
2 changed files with 9 additions and 1 deletions

View File

@ -250,6 +250,8 @@ $header-height: 3.25em;
}
.extension-container {
max-width: calc(100% - 1em);
.extension {
display: flex;
flex-direction: column;

View File

@ -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 {