@wendyhamel
Posted
@LonelyBuddy Cool effect with clamp! I think i would have solved that with an SVG.
I noticed you used a lot of 'custom' classes in your project. The power of Tailwind.css lies primarily in the utility classes. For example: you use text-[18px]
a few times in your project. You could specify a text-..
class name in the tailwind config and use that in your project. That way, if you decide to make it 1rem
instead of 18px
, you can do this in one place and have it changed in your whole project without having to find and replace all instances.
I like tailwind a lot. I work a lot faster and I don't waste time thinking of names for my classes!
Have fun coding!
Marked as helpful
@LonelyBuddy
Posted
@wendyhamel Thanks, Wendy! WOW, I didn't know you could solve that with SVG! I'm going Learn how to make SVG myself.