7 lines
123 B
CSS
7 lines
123 B
CSS
.animate-hover-top {
|
|
@apply transition-all duration-300 ease-out;
|
|
&:hover {
|
|
@apply translate-y-[-6px];
|
|
}
|
|
}
|