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
ISSUE: @media blocks are compiled such that the @media tag and any successive word have no space between. Browsers then throw away the erroneous block.
For example,
@media only screen and (min-width: 42em) {...}
compiles to
'...@mediaonly screen and (min-width: 42em) {...}...'
ISSUE:
@media
blocks are compiled such that the@media
tag and any successive word have no space between. Browsers then throw away the erroneous block.For example,
compiles to
REPRO/REFERENCE:
https://gist.github.com/anonymous/3ae1fefbef1a4fe1deb280a7654fa3c3
The text was updated successfully, but these errors were encountered: