15 lines
441 B
CSS
15 lines
441 B
CSS
.homegrade-blocks-cta-slim {
|
|
@apply flex items-center font-bold pt-2 w-fit rounded-md;
|
|
&:after {
|
|
@apply ml-2;
|
|
transition: transform 0.2s ease-in-out;
|
|
/* @apply content-[''] w-4 h-4 bg-green-400 inline-block; */
|
|
content: url('../resources/img/graphic-assets/chevron-next.svg');
|
|
}
|
|
&:hover:after {
|
|
@apply translate-x-1;
|
|
transition: transform 0.2s ease-in-out;
|
|
/* @apply translate-x-2; */
|
|
}
|
|
}
|