diff --git a/resources/css/blocks/search-artisan-btn.css b/resources/css/blocks/search-artisan-btn.css new file mode 100644 index 0000000..4c60309 --- /dev/null +++ b/resources/css/blocks/search-artisan-btn.css @@ -0,0 +1,18 @@ +.search-artisan-btn { + @apply p-3 w-fit bg-white shadowed text-patrimoine-sante-securite + font-bold rounded-2xl flex items-center justify-center my-5; + + transition: transform 0.3s; + &__page-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; + } +}