diff --git a/resources/css/blocks/wp-block-buttons.css b/resources/css/blocks/wp-block-buttons.css index a90497c..8e3be6d 100644 --- a/resources/css/blocks/wp-block-buttons.css +++ b/resources/css/blocks/wp-block-buttons.css @@ -41,9 +41,26 @@ } .wp-block-buttons { @apply !max-w-screen-lg; + + .wp-block-button a { + @apply rounded-full border; + } } .wp-block-buttons.alignwide, .wp-block-buttons.alignfull { @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; */ + } +}