carhop__carhop-theme__DEV/resources/css/base/animation.css
Antoine M 707eb95ef6
All checks were successful
continuous-integration/drone/push Build is passing
STYLE introducing the animation component
2025-09-30 15:35:06 +02:00

10 lines
165 B
CSS

/**
* Animation for the hover top
*/
.animate-hover-top {
@apply transition-all duration-300 ease-out;
&:hover {
@apply translate-y-[-6px];
}
}