]> BookStack Code Mirror - bookstack/blob - resources/sass/_mixins.scss
Add git to the apt-get install packages.
[bookstack] / resources / sass / _mixins.scss
1 // Responsive breakpoint control
2 @mixin smaller-than($size) {
3     @media screen and (max-width: $size) { @content; }
4 }
5 @mixin larger-than($size) {
6     @media screen and (min-width: $size) { @content; }
7 }
8 @mixin between($min, $max) {
9   @media screen and (min-width: $min) and (max-width: $max) { @content; }
10 }
Morty Proxy This is a proxified and sanitized view of the page, visit original site.