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
Error: You may not @extend an outer selector from within @media.
You may only @extend selectors within the same directive.
From "@extend %placeholder" on line 13 of ../../privateonline/test.scss
on line 6 of ../../privateonline/test.scss
>> %placeholder {
----^
Ruby sass generates the expected css
@media (max-width:1em) {
.test {
color: red; } }
And replacing the function call with the value makes libsass compile correct as well
I discovered a strange bug with extending and media queries when using a function to calculate the media query value.
The following code produces an error with libsass using both node-sass and sassc but works fine using ruby sass.
Ruby sass generates the expected css
And replacing the function call with the value makes libsass compile correct as well
version info:
The text was updated successfully, but these errors were encountered: