Retrospring/app/assets/stylesheets/elements/_body.scss

12 lines
283 B
SCSS
Raw Normal View History

body {
overflow-y: scroll;
word-wrap: break-word;
color: RGB(var(--body-text));
background-color: var(--background);
2021-08-05 15:36:02 -07:00
@include media-breakpoint-up('lg') {
padding-top: $navbar-height;
}
@include media-breakpoint-down('md') {
padding-bottom: $navbar-height;
}
}