|
|
|
|
|
by ryanto
2818 days ago
|
|
I think for css classes like ".profile-card" this approach makes a lot of sense. Tailwind has @apply, which is a great way to turn these utility classes into named css classes. However, after a while your app will end up with classes like .profile-card--inner, .profile-card__wrapper, and .profile-card__inner__wrapper--horizontal. When that happens it's usually easier to use those utility classes directly in the HTML template. You'll end up with something like: <div class="flex items-center mb-4">
</div>
It's quick to write and requires no context switching! |
|