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
It seems there's no clean way to apply styles to the inner divs, especially since webpack will mangle the class names (this is a non-issue for the parent div since it accepts a className prop).
I have to work around the fact that I don't have the class names by doing something like this in my CSS.
#wizard > div,
#wizard > div > div {
height: 100%; /* example */
}
I'm not sure how this could be solved but seems like a small paper-cut for full control. I'm also not that familiar with webpack so I might be missing something completely obvious here.
The text was updated successfully, but these errors were encountered:
@jcmcneal Is it possible to guarantee at least the "active" classname, so I can write a cleaner selector (given my container className is step-wizard-container) like:
Hi!
It seems there's no clean way to apply styles to the inner divs, especially since webpack will mangle the class names (this is a non-issue for the parent div since it accepts a
className
prop).I have to work around the fact that I don't have the class names by doing something like this in my CSS.
I'm not sure how this could be solved but seems like a small paper-cut for full control. I'm also not that familiar with webpack so I might be missing something completely obvious here.
The text was updated successfully, but these errors were encountered: