-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
@import CSS injector reordering my stuffs #452
Comments
How are you trying to add normalize.css? If you run |
You're right... I totally didnt even think of doing that. Thank you so much. |
@9mm no problem, glad I could help. |
How do you prevent the rendering .. I have a variable css I'm importing and its getting reordered. /* === views === / /* === reusable components === */ gets reorder to this // Component styles are injected through grunt any idea why ? or what is the best way to import these |
@meezyart see how grunt-injector works |
I'm trying to add normalize.css which must go first before any other CSS in the app (and I dont just want to paste it right into app.scss because it's huge and messy).
According to the demo file: https://github.com/DaftMonk/fullstack-demo/blob/master/client/app/app.scss
I can see other files are going before main/main.scss. When I try to do this, the moment I refresh the page it's instantly re-ordered so main is first.
If I try putting @import outside of the injector comment, as in the demo, it immediately moves it back into the injector and makes a duplicate.
Thanks
The text was updated successfully, but these errors were encountered: