It might be interesting to have minimal animations added as utility classes.
More specifically on touch devices it is great to have some feedback when you tap on a link, card or any other interactive element, for instance:
.someInteractiveElement{
...
transition: all 0.25s;
}
.someInteractiveElement:active{
transform: scale(0.95);
}
It might be interesting to have minimal animations added as utility classes. More specifically on touch devices it is great to have some feedback when you tap on a link, card or any other interactive element, for instance:
Cheers