ff58c664d1
* Fix double scrollbars in deck options * Remove !important Future pages may want to override overflow-x (?) and it doesn't seem to change anything for now. * Allow the body to expand vertically in the import CSV page
23 lines
436 B
SCSS
23 lines
436 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;
|
|
height: auto;
|
|
width: min(100vw, 70em);
|
|
margin: 0 auto;
|
|
padding: 0 1em 1em 1em;
|
|
}
|