You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be converted into something looks like this:
breakpoint(min = 0, max = 0)
type = typeof(min)
if type == ident
if min == xxs
@media (max-width 480px)
{block}
if min == xs
@media (max-width 767px)
{block}
else if min == sm
@media (min-width 768px)
{block}
else if min == md
@media (min-width 992px)
{block}
else if min == lg
@media (min-width 1200px)
{block}
else
query = "all"
if min != 0 and max != 0
query = "(min-width: "+min+") and (max-width: "+max+")"
else if min != 0 and max == 0
query = "(min-width: min)"
else if min == 0 and max != 0
query = "(max-width: "+max+")"
@media query
{block}
Hi,
I unable to convert these sass code:
The text was updated successfully, but these errors were encountered: