STYLE introducing the animation css component

This commit is contained in:
Antoine M 2025-09-30 15:29:34 +02:00
parent cf213fbfbd
commit c5cae43428

View File

@ -0,0 +1,6 @@
.animate-hover-top {
@apply transition-all duration-300 ease-out;
&:hover {
@apply translate-y-[-6px];
}
}