RESPONSIVE FIX Mobile brand menu
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2026-05-20 11:57:22 +02:00
parent befc0b6153
commit 718df5ec1c
2 changed files with 7 additions and 3 deletions

View File

@ -28,6 +28,7 @@
.tools-container { .tools-container {
@apply flex w-fit gap-2; @apply flex w-fit gap-2;
.support-button,
.search-button, .search-button,
.subscribe-button { .subscribe-button {
@apply w-6 h-6 border-2 flex border-white rounded-full p-2 justify-center items-center shrink-0; @apply w-6 h-6 border-2 flex border-white rounded-full p-2 justify-center items-center shrink-0;

View File

@ -22,10 +22,13 @@
<div class="tools-container"> <div class="tools-container">
<button class="search-button"> <button class="search-button">
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-rechercher.svg" alt="Rechercher"> <img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-rechercher.svg" alt="Rechercher">
</button> </button>
<a class="subscribe-button" href="<?php echo home_url(); ?>/infolettre"> <?php
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-abonner.svg" alt="Sabonner"> $soutenir_page_id = 1963
?>
<a class="support-button" href="<?php echo get_the_permalink($soutenir_page_id); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-soutenir.svg" alt="Soutenir">
</a> </a>
</div> </div>
</div> </div>