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
I have installed slds with bower and I and getting an error Invalid CSS after "": expected selector, was "" when it is included.
// application.scss@import"salesforce-lightning-design-system/scss/index";
// the @import above throws => Invalid CSS after "": expected selector, was ""
The error is on scss/dependencies/core.scss:24.
@mixincore($scoped: null, $globals: null) {
@if$scoped=='scoped' {
$scoped-selector: '&';
$scoped-root: $scoped-selector;
$scoped-body: '&:not(html), body';
}
$scoped-selector: ''!default;
$scoped-root: 'html'!default;
$scoped-body: 'body'!default;
// This will throw and error because it will try to create a style with no selector...// the fix is to skip this code instead of creating a bogus selector #{$scoped-selector} {
...
}
...
}
The text was updated successfully, but these errors were encountered:
I have installed slds with bower and I and getting an error
Invalid CSS after "": expected selector, was ""
when it is included.The error is on
scss/dependencies/core.scss:24
.The text was updated successfully, but these errors were encountered: