mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-09-03 20:22:41 +00:00
d51dfd35e8
* feat(responsive): add responsive breakpoints and mixin for media queries * refactor: print styles and add media query support * refactor(responsive): enhance responsive styles across various components
38 lines
725 B
SCSS
38 lines
725 B
SCSS
.page {
|
|
position: relative;
|
|
@extend %page-style;
|
|
|
|
.content {
|
|
[id] {
|
|
scroll-margin-top: fixit-var(scroll-mt);
|
|
|
|
[data-header-desktop='normal'] & {
|
|
@include media('xs', 'up') {
|
|
@include set-fixit-var(scroll-mt, fixit-var(global-scroll-margin-top));
|
|
}
|
|
}
|
|
|
|
[data-header-mobile='normal'] & {
|
|
@include media('xs') {
|
|
@include set-fixit-var(scroll-mt, fixit-var(global-scroll-margin-top));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include blur;
|
|
|
|
@include media('print') {
|
|
width: 100% !important;
|
|
padding-top: 0 !important;
|
|
}
|
|
}
|
|
|
|
@import '_single';
|
|
@import '_special';
|
|
@import '_archive';
|
|
@import 'home';
|
|
@import '404';
|
|
@import 'offline';
|
|
@import "patch";
|