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 608f0f83b9
commit 56fc5f7c60
2 changed files with 4 additions and 1 deletions

View file

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

View file

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