fix scrollbar and toolbar grid-gap #1170 (#1173)

This commit is contained in:
José Quinto 2020-04-03 07:11:42 +01:00 committed by GitHub
parent a488555f30
commit efa8b95c52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,6 +216,7 @@ button,
.App-menu_top { .App-menu_top {
grid-template-columns: 1fr auto 1fr; grid-template-columns: 1fr auto 1fr;
grid-gap: 4px;
align-items: flex-start; align-items: flex-start;
cursor: default; cursor: default;
pointer-events: none !important; pointer-events: none !important;
@ -236,8 +237,8 @@ button,
.App-menu_bottom { .App-menu_bottom {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
grid-template-columns: 1fr auto 1fr; grid-template-columns: 1fr auto 1fr;
grid-gap: 4px;
align-items: flex-start; align-items: flex-start;
cursor: default; cursor: default;
pointer-events: none !important; pointer-events: none !important;
@ -354,12 +355,12 @@ button,
} }
.dropdown-select__language.dropdown-select--floating { .dropdown-select__language.dropdown-select--floating {
bottom: 0; bottom: 10px;
:root[dir="ltr"] & { :root[dir="ltr"] & {
right: 0; right: 10px;
} }
:root[dir="rtl"] & { :root[dir="rtl"] & {
left: 0; left: 10px;
} }
} }