From 9616ffb9ed9dab279552912b82a24bf3696f1329 Mon Sep 17 00:00:00 2001 From: SofianeLasri <alasri250@gmail.com> Date: Thu, 20 Feb 2025 16:23:43 +0100 Subject: [PATCH] feat: update contact page layout to allow for responsive social media links - Changed the class of the social media links container from "flex align-center justify-center" to "flex flex-wrap align-center justify-center" for improved responsiveness. --- resources/views/public/contact.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/public/contact.blade.php b/resources/views/public/contact.blade.php index c6e0d34..74e56ac 100644 --- a/resources/views/public/contact.blade.php +++ b/resources/views/public/contact.blade.php @@ -10,7 +10,7 @@ {{ __('contact.contact_me_on_one_of_my_social_media') }} </div> - <div class="flex align-center justify-center gap-4 mt-4"> + <div class="flex flex-wrap align-center justify-center gap-4 mt-4"> @foreach(\App\Models\SocialMediaLink::all() as $socialMediaLink) <x-public.button tag="a" :href="$socialMediaLink->url" class="flex items-center gap-2" size="medium"> -- GitLab