Compare commits

...

3 Commits

Author SHA1 Message Date
Antoine M
718df5ec1c RESPONSIVE FIX Mobile brand menu
All checks were successful
continuous-integration/drone/push Build is passing
2026-05-20 11:57:22 +02:00
Antoine M
befc0b6153 RESPONSIVE FIX gap size between shapes 2026-05-20 11:56:53 +02:00
Antoine M
558e74daac REMOVE unnecessary blank lines in search form for cleaner code 2026-05-20 11:40:45 +02:00
4 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,8 @@
.decorative-shapes {
/* @apply py-32; */
@apply py-12;
@apply grid;
@apply grid-cols-4;
@apply gap-6 md:gap-12 lg:gap-24;
}

View File

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

View File

@ -13,8 +13,6 @@
</div>
<ul class="search-module__suggestions">
<li class="suggestion-item">
<a href="<?php echo home_url('/contact'); ?>">Découvrir les activités du CARHOP</a>
</li>

View File

@ -22,10 +22,13 @@
<div class="tools-container">
<button class="search-button">
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-rechercher.svg" alt="Rechercher">
</button>
<a class="subscribe-button" href="<?php echo home_url(); ?>/infolettre">
<img src="<?php echo get_template_directory_uri(); ?>/resources/img/icons/carhop-abonner.svg" alt="Sabonner">
<?php
$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>
</div>
</div>