mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
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:
parent
96841df5f8
commit
bbaa6c24ec
2 changed files with 4 additions and 1 deletions
|
@ -4,3 +4,5 @@
|
||||||
button {
|
button {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html { height: initial; }
|
|
@ -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; }
|
Loading…
Reference in a new issue