9c45a2f7d0
* Refactor Select component and implement/update it in various screens * Remove redundant select CSS * Tweak DeckOptionsPage * Fix CSV import layout * Fix save button margin in change notetype screen * Fix sticky header positioning * Remove unused imports * Make StickyHeader sticky instead of fixed
22 lines
414 B
SCSS
22 lines
414 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 {
|
|
height: 100vh;
|
|
width: min(100vw, 70em);
|
|
margin: 0 auto;
|
|
padding: 0 1em 1em 1em;
|
|
}
|