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
We are using this library in 2 of our projects and works really well.
But one of the practices that we usually use are "State classes" like http://smacss.com/book/type-state
for example if we have
<div styleName="menu__item"></div>
this element can sometimes have this class
<div styleName="menu__item is-active"></div>
To try to style things like this we had to use multiple modules and have a CSS like:
We are using this library in 2 of our projects and works really well.
But one of the practices that we usually use are "State classes" like http://smacss.com/book/type-state
for example if we have
this element can sometimes have this class
To try to style things like this we had to use multiple modules and have a CSS like:
ideally we would like to use
But ok we can more or less work, the problem is when you have something inside
menu__item
In that case we cannot do that:
or ideally:
Are you planning some feature to "disable" selectors that start with a prefix?
For example, for us can be useful to ignore "is-", "u-", etc...
The text was updated successfully, but these errors were encountered: