Fix double scrollbars in deck options (#2406)

* Fix double scrollbars in deck options

* Remove !important

Future pages may want to override overflow-x (?) and it doesn't seem to change anything for now.

* Allow the body to expand vertically in the import CSV page
This commit is contained in:
Fabricio Duarte 2023-02-28 02:57:06 -03:00 committed by GitHub
parent af620186ff
commit ff58c664d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -40,11 +40,11 @@ body {
} }
html { html {
overflow-x: hidden;
overscroll-behavior: none; overscroll-behavior: none;
} }
body { body {
overflow-x: hidden;
&:not(.isMac), &:not(.isMac),
&:not(.isMac) * { &:not(.isMac) * {
@include scrollbar.custom; @include scrollbar.custom;

View file

@ -14,7 +14,8 @@
} }
body { body {
height: 100vh; min-height: 100vh;
height: auto;
width: min(100vw, 70em); width: min(100vw, 70em);
margin: 0 auto; margin: 0 auto;
padding: 0 1em 1em 1em; padding: 0 1em 1em 1em;