19 lines
245 B
SCSS
19 lines
245 B
SCSS
|
@use "sass/bootstrap-dark";
|
||
|
|
||
|
@import "sass/base";
|
||
|
|
||
|
@import "sass/bootstrap-tooltip";
|
||
|
@import "bootstrap/scss/buttons";
|
||
|
|
||
|
.night-mode {
|
||
|
@include bootstrap-dark.night-mode;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
padding: 0 1em 1em 1em;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
height: initial;
|
||
|
}
|