bluespec-docs/sass/_variables.scss

14 lines
253 B
SCSS
Raw Normal View History

2025-02-12 20:54:12 +00:00
@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;