Files
hyzendust.github.io/themes/hugo-theme-yue/assets/scss/_layout.scss
2025-11-11 18:07:05 +05:30

14 lines
295 B
SCSS

// On mobile, add little margins
.body {
margin-left: $body-margin-left;
margin-right: $body-margin-right;
}
// On desktop, use fixed width and center <body>
@media (min-width: $desktop-breakpoint) {
.body {
width: $body-max-width;
margin-left: auto;
margin-right: auto;
}
}