Closed Kovas closed 6 years ago
Hello,
I get [scss] ( expected when interpolation is used for variable in media query:
[scss] ( expected
@media screen and #{breakpoint(medium)} and (min-height: 50em) { min-height: 100vh; padding: rem-calc(200 0); }
#{breakpoint(medium)} returns (min-width: 40em), so there's no need for (.
#{breakpoint(medium)}
(min-width: 40em)
(
Is there anything I can do about it?
That's coming from the built-in SCSS validation.
You can disable it with:
"scss.validate": false
(in your VS Code settings)
My bad. Thanks :)
Hello,
I get
[scss] ( expected
when interpolation is used for variable in media query:#{breakpoint(medium)}
returns(min-width: 40em)
, so there's no need for(
.Is there anything I can do about it?