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
My issue is that a color is specified on a generic tag, in this case small.
It means that <p class="text-success">I'm green and <small>I'm gray</small>.</p>.
There is an easy workaround, <p class="text-success">I'm green and <small class="text-success">I'm green</small>.</p>, but I would expect small to inherit if I set color on a parent.
We have this rule that includes a color for the generic tag
small
and its helper-class.small
I believe it was added to mute small text in headings
<h1>Customer Name <small>(#customer-number)</small></h1>
I like that behavior in headings actually, even though we got
text-muted
, but the genericsmall
rule looks just wrong to meThe text was updated successfully, but these errors were encountered: