old_blog/_sass/mixins/_breakpoints.scss
2020-06-19 00:52:06 -04:00

13 lines
216 B
SCSS

@mixin min-breakpoint($point) {
@media only screen and (min-width: $point) {
@content;
}
}
@mixin max-breakpoint($point) {
@media only screen and (max-width: $point) {
@content;
}
}