responsive design scss code example
Example 1: scss media query
$information-phone: "only screen and (max-width : 320px)";
@media #{$information-phone} {
background: red;
}
Example 2: html responsive
<meta name="viewport" content="width=device-width, initial-scale=1.0">