bluespec-docs/sass/_variables.scss
2025-02-12 15:54:12 -05:00

14 lines
253 B
SCSS

@mixin min-screen($min-width: $body-width) {
@media screen and (min-width: $min-width) {
@content;
}
}
@mixin max-screen($max-width: $body-width) {
@media screen and (max-width: $max-width) {
@content;
}
}
$sidebar-width: 300px;