10 lines
165 B
CSS
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];
|
|
}
|
|
}
|