// 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)
const Text = 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)
const OtherText = tw.p`text-[white] text-28`;
// When writing like this, Both text-[white] and text-[28px] are applied.
const OtherText = 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?