mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05: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
608f0f83b9
commit
56fc5f7c60
2 changed files with 4 additions and 1 deletions
|
|
@ -4,3 +4,5 @@
|
|||
button {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
html { height: initial; }
|
||||
|
|
@ -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; }
|
||||
Loading…
Reference in a new issue