mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
17 lines
338 B
SCSS
17 lines
338 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 clearfix() {
|
|
&:after {
|
|
display: block;
|
|
content: '';
|
|
font-size: 0;
|
|
clear: both;
|
|
position: relative;
|
|
}
|
|
}
|