zelda-planted/themes/zen/assets/sass/init/breakpoint/_respond-to.scss

10 lines
250 B
SCSS
Raw Normal View History

2020-10-15 04:39:37 +00:00
@mixin respond-to($breakpoint) {
// If the key exists in the map
@if map-has-key($breakpoints, $breakpoint) {
// Prints a media query based on the value
@media (min-width: map-get($breakpoints, $breakpoint)) {
@content;
}
}
}