Prevent the sticky from hiding in the stats page (#2457)

* Prevent the sticky from hiding in the stats page

* Replace height:auto with height:initial in the import CSV page

To match with the other pages (deck options and graphs), making it easier to possibly simplify the CSS code in the future. Doesn't really cause any changes.
This commit is contained in:
Fabricio Duarte 2023-03-26 02:23:50 -03:00 committed by GitHub
parent 96841df5f8
commit bbaa6c24ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -4,3 +4,5 @@
button { button {
margin-bottom: 5px; margin-bottom: 5px;
} }
html { height: initial; }

View file

@ -15,8 +15,9 @@
body { body {
min-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;
} }
html { height: initial; }