scss – media query not detecting width – Html
I have this mediaquery on my iframe: @include breakpoint(m) that will be called in: @mixin breakpoint($class) { @if $class == s { @media (max-width: 599px) { @content; } } @else if $class == m { @media (min-width: 768px) { @content;…