anki/ts/import-csv/import-csv-base.scss
Fabricio Duarte bbaa6c24ec
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.
2023-03-26 15:23:50 +10:00

23 lines
444 B
SCSS

@use "sass/bootstrap-dark";
@import "sass/base";
@import "bootstrap/scss/alert";
@import "bootstrap/scss/buttons";
@import "bootstrap/scss/button-group";
@import "bootstrap/scss/close";
@import "bootstrap/scss/grid";
@import "sass/bootstrap-forms";
.night-mode {
@include bootstrap-dark.night-mode;
}
body {
min-height: 100vh;
width: min(100vw, 70em);
margin: 0 auto;
padding: 0 1em 1em 1em;
}
html { height: initial; }