From 17cefcaa30ad0d03c43c54c2da9692765849477e Mon Sep 17 00:00:00 2001 From: anulax1225 Date: Sun, 26 Jan 2025 17:48:05 +0100 Subject: [PATCH] Adaptation mobile --- resources/js/Components/ResponsiveNavLink.vue | 2 +- resources/js/Layouts/AuthLayout.vue | 4 +- resources/js/Layouts/Layout.vue | 59 ++++++++++++++++--- resources/js/Pages/Album/Partials/Show.vue | 2 +- resources/js/Pages/Album/Show.vue | 8 +-- resources/js/Pages/Home.vue | 12 ++-- resources/js/Pages/Photo/Index.vue | 19 ++++-- resources/js/Pages/Photo/Partials/Panel.vue | 4 +- .../js/Pages/Photo/Partials/PanelDisplay.vue | 12 ++-- resources/js/Pages/Profile/Edit.vue | 10 ++-- .../Partials/UpdateProfileInformationForm.vue | 6 +- 11 files changed, 95 insertions(+), 43 deletions(-) diff --git a/resources/js/Components/ResponsiveNavLink.vue b/resources/js/Components/ResponsiveNavLink.vue index f6c4566..41ec0db 100644 --- a/resources/js/Components/ResponsiveNavLink.vue +++ b/resources/js/Components/ResponsiveNavLink.vue @@ -14,7 +14,7 @@ const props = defineProps({ const classes = computed(() => props.active - ? 'block w-full ps-3 pe-4 py-2 border-l-4 border-indigo-400 text-start text-base font-medium text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition duration-150 ease-in-out' + ? 'block w-full ps-3 pe-4 py-2 border-l-4 border-gray-400 text-start text-base font-medium text-gray-700 bg-gray-50 focus:outline-none focus:text-gray-800 focus:bg-gray-100 focus:border-gray-700 transition duration-150 ease-in-out' : 'block w-full ps-3 pe-4 py-2 border-l-4 border-transparent text-start text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300 transition duration-150 ease-in-out', ); diff --git a/resources/js/Layouts/AuthLayout.vue b/resources/js/Layouts/AuthLayout.vue index 1b209cb..cb8b86a 100644 --- a/resources/js/Layouts/AuthLayout.vue +++ b/resources/js/Layouts/AuthLayout.vue @@ -5,7 +5,7 @@ import { Link } from '@inertiajs/vue3'; diff --git a/resources/js/Pages/Home.vue b/resources/js/Pages/Home.vue index c3c8066..2a2d55c 100644 --- a/resources/js/Pages/Home.vue +++ b/resources/js/Pages/Home.vue @@ -8,13 +8,13 @@ import Layout from '@/Layouts/Layout.vue';