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
Writing a complete CSS declaration may not look good in class attributes. To simplify the class and unify the team's style, we have proposed a new solution:
Non-utility warnings
⚠️ Avoid writing the full CSS declaration display:block.
<divclass="display:block"></div>
🟢 Possible fixes: Use the recommended utility block.
<divclass="block"></div>
Recommended keys
⚠️ Not a recommanded key t:.
<divclass="t:center"></div>
🟢 Possible fixes: Use the recommended key text:.
<divclass="text:center"></div>
The text was updated successfully, but these errors were encountered:
Description
Writing a complete CSS declaration may not look good in class attributes. To simplify the class and unify the team's style, we have proposed a new solution:
Non-utility warnings
display:block
.🟢 Possible fixes: Use the recommended utility
block
.Recommended keys
t:
.🟢 Possible fixes: Use the recommended key
text:
.The text was updated successfully, but these errors were encountered: