We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So, semantic-ui is working!
But I keep getting a warning: WARN: Compilation resulted in incorrect CSS. The IMPORT ended up inside a body of rule set located at 17:1 at line 51
WARN: Compilation resulted in incorrect CSS. The IMPORT ended up inside a body of rule set located at 17:1 at line 51
It seems to be caused by this line:
/******************************* Page *******************************/ .loadFonts();
Which triggers this mixin:
.loadFonts() when (@importGoogleFonts) { @import url('@{googleProtocol}fonts.googleapis.com/css?family=@{googleFontRequest}'); }
And then results in the following css:
{ /******************************* Page *******************************/ @import url('https://fonts.googleapis.com/css?family=Roboto:400,700,400italic,700italic&subset=latin'); }
The {} around the import statement shouldn't be there I think
{}
The text was updated successfully, but these errors were encountered:
I opened issue upstream at less4j: SomMeri/less4j#364
Sorry, something went wrong.
No branches or pull requests
So, semantic-ui is working!
But I keep getting a warning:
WARN: Compilation resulted in incorrect CSS. The IMPORT ended up inside a body of rule set located at 17:1 at line 51
It seems to be caused by this line:
Which triggers this mixin:
And then results in the following css:
The
{}
around the import statement shouldn't be there I thinkThe text was updated successfully, but these errors were encountered: