1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-24 03:25:16 +03:00
bookstack/resources/sass/_mixins.scss
2019-09-06 23:36:16 +01:00

11 lines
309 B
SCSS

// Responsive breakpoint control
@mixin smaller-than($size) {
@media screen and (max-width: $size) { @content; }
}
@mixin larger-than($size) {
@media screen and (min-width: $size) { @content; }
}
@mixin between($min, $max) {
@media screen and (min-width: $min) and (max-width: $max) { @content; }
}