-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Description
Less:
.foo() {
font-weight: 300;
-webkit-font-smoothing: subpixel-antialiased;
@supports not (-webkit-font-smoothing: subpixel-antialiased) {
font-weight: 400;
}
}
html {
.foo;
}
Generated CSS:
html {
font-weight: 300;
-webkit-font-smoothing: subpixel-antialiased;
}
@supports not (-webkit-font-smoothing: subpixel-antialiased) {
font-weight: 400;
}
Expected CSS:
html {
font-weight: 300;
-webkit-font-smoothing: subpixel-antialiased;
}
@supports not (-webkit-font-smoothing: subpixel-antialiased) {
html {
font-weight: 400;
}
}
nilssolanki