Files
havox/assets/sass/layout/_wrapper.scss
2026-03-10 21:01:46 +00:00

16 lines
252 B
SCSS

/* Wrapper */
#wrapper {
width: _size(inner);
max-width: calc(100% - 4em);
margin: 0 auto;
@include breakpoint('<=xsmall') {
max-width: calc(100% - 2em);
}
@include breakpoint('<=xxsmall') {
max-width: 100%;
}
}