I try to put a simple transition on an after pseudo element in Tailwind. The css is:
.button::after { transition: 0.5s all ease }
I tried:
class="after:transition after:ease after:duration-500"
But nothing. I see that after:ease doesn't work, but how do I go about this?
Thanks so much!