bbaa6c24ec
* 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.
23 lines
444 B
SCSS
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; } |