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
// When text is repeatedly entered, only the last text-[white] value is applied.// text-28 does not apply! (When checking in developer tools, it is not indicated in the class value)constText=tw.p`text-28 text-[white]`;// When writing like this, only text-28 value is applied.// text-[white] does not apply! (Likewise, the class is not marked)constOtherText=tw.p`text-[white] text-28`;// When writing like this, Both text-[white] and text-[28px] are applied.constOtherText=tw.p`text-[white] text-[28px]`;
As shown above, when the customizing style is applied together, if the same text phrase (different style) is written, the style does not work.
The bug occurs when:
As shown above, when the customizing style is applied together, if the same text phrase (different style) is written, the style does not work.
Is there any way to solve these issues?
The text was updated successfully, but these errors were encountered: