media query with scss code example
Example: scss media query
$information-phone: "only screen and (max-width : 320px)";
@media #{$information-phone} {
background: red;
}
$information-phone: "only screen and (max-width : 320px)";
@media #{$information-phone} {
background: red;
}