-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
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
Sass version is behind #16
Comments
Hi! |
It looks better but there is still a little problem with columns that also work as grids. Example html: <div id="container" class="grid">
<div id="parent1" class="col-6 grid">
<div class="col-3"></div>
<div class="col-9"></div>
</div>
<div id="parent2" class="col-6 grid">
<div class="col-6"></div>
<div class="col-6"></div>
</div>
</div> With the example above:
|
Hello, for me v2.2.0 compilation from Sass source works well. |
The issue is fixed indeed. I just realised the problem I mentioned on my last reply was being caused by CSS Modules. So basically, if someone comes across this same problem, you shouldn't import CSS meant to be global inside of a CSS Module. |
I have the following HTML:
When I load your css via cdnjs I get the result I want:
When I include your SASS files into my SASS files I get the following result:
Working example: https://jsfiddle.net/dg4k84zj/.
Would it be possible to fix that? I would prefer to import the sass files instead of using the generated CSS, since I want to be able to access your SASS variables... Thank you!
The text was updated successfully, but these errors were encountered: