sass $desktop and $handheld
-
is it possible to change the css file at the exact place that $desktop needs to be change instead of converting .scss to .css ?
i have no problem converting :
body {
font: 100% $font-stack;
color: $primary-color;
}but i do have some problem converting
$desktop and $handheld
i would like to replace @media (min-width: #{$desktop-width}) by @media (min-width: #{1280px}) do you guys know what page needs to be updated?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘sass $desktop and $handheld’ is closed to new replies.