Looking for a solution:
elem
transform translateY(5px) scale(1.2)
I want the element to move down an extra 5px on hover
elem:hover
transform translateY(5px)
Is there a way to achieve this without knowing the previous state of the transform?
Appreciate any help.