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 dont want child.css to include the rules from main.less as both files would be included in my page.
I understand this would require a syntax change. perhaps an alternative to @import is required or another arguement to the @import rule could be provided.
this is the only thing thats stopping me using less.js right now...
The text was updated successfully, but these errors were encountered:
I need the ability to generate several css files that are aware of the rules already generated in other files.
For example main.less may contain
.rounded { border-radius: 10px; }
and child.less may contain
@import "main.less";
#someid { .rounded; }
I dont want child.css to include the rules from main.less as both files would be included in my page.
I understand this would require a syntax change. perhaps an alternative to @import is required or another arguement to the @import rule could be provided.
this is the only thing thats stopping me using less.js right now...
The text was updated successfully, but these errors were encountered: