old_blog/_sass/mixins/_breakpoints.scss

13 lines
216 B
SCSS
Raw Normal View History

2020-06-19 00:16:57 -04:00
@mixin min-breakpoint($point) {
@media only screen and (min-width: $point) {
@content;
}
}
@mixin max-breakpoint($point) {
@media only screen and (max-width: $point) {
@content;
}
}