FEATURE Handling email button variation

This commit is contained in:
Antoine M 2026-05-05 14:57:36 +02:00
parent 2015cc1e50
commit fa645d20df

View File

@ -41,9 +41,26 @@
} }
.wp-block-buttons { .wp-block-buttons {
@apply !max-w-screen-lg; @apply !max-w-screen-lg;
.wp-block-button a {
@apply rounded-full border;
}
} }
.wp-block-buttons.alignwide, .wp-block-buttons.alignwide,
.wp-block-buttons.alignfull { .wp-block-buttons.alignfull {
@apply max-w-none; @apply max-w-none;
} }
.wp-block-button.email-button a {
@apply flex justify-between gap-2 items-center;
&:before {
@apply content-[''] block w-5 h-4 bg-no-repeat;
transition: transform 0.3s ease-out;
background-image: url('../resources/img/icons/carhop-mail-green.svg');
background-size: contain;
background-position: center;
/* background-color: red; */
}
}