23 lines
524 B
CSS
23 lines
524 B
CSS
.side-card {
|
|
@apply py-4 px-6 w-fit bg-white shadowed text-neutral-900
|
|
font-bold rounded-2xl flex items-center justify-center my-5 gap-6;
|
|
|
|
transition: transform 0.3s;
|
|
&__title {
|
|
@apply leading-snug;
|
|
}
|
|
&__icon {
|
|
@apply w-16 h-16;
|
|
}
|
|
|
|
&:after {
|
|
@apply content-[''] w-3 h-3 block bg-no-repeat bg-center bg-contain mt-1 ml-4;
|
|
background-image: url('../resources/img/pictogrammes/Homegrade_back_icon.svg');
|
|
rotate: 180deg;
|
|
}
|
|
|
|
&:hover {
|
|
@apply translate-x-2;
|
|
}
|
|
}
|