From 9e6a29a8f10933249303cf3799cc9940149c6fef Mon Sep 17 00:00:00 2001 From: Mamalizz-dev Date: Wed, 13 May 2026 13:13:50 +0330 Subject: [PATCH 1/7] refactor: optimize UI/UX styling and layout responsiveness across cart, modal, and product components --- frontend/pages/cart/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pages/cart/index.vue b/frontend/pages/cart/index.vue index d236761..2bc6b60 100644 --- a/frontend/pages/cart/index.vue +++ b/frontend/pages/cart/index.vue @@ -29,7 +29,7 @@ const hasCartItem = computed(() => !!cart.value && cart.value.items.length! > 0)
Date: Wed, 13 May 2026 13:14:14 +0330 Subject: [PATCH 2/7] refactor: refactor Modal component, add loading skeletons to cart items, and perform minor UI/code cleanup across components --- frontend/components/cart/global/CartSummary.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/components/cart/global/CartSummary.vue b/frontend/components/cart/global/CartSummary.vue index a6d3ec0..09cc74f 100644 --- a/frontend/components/cart/global/CartSummary.vue +++ b/frontend/components/cart/global/CartSummary.vue @@ -324,8 +324,8 @@ watch( :to="{ name: nextPage?.name, query: { gw: nextPage?.query } }" >
-
+
Date: Wed, 13 May 2026 13:16:27 +0330 Subject: [PATCH 7/7] fix: update arrow icon and conditionally render cart page title --- frontend/layouts/Cart.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/layouts/Cart.vue b/frontend/layouts/Cart.vue index fee3354..17444a8 100644 --- a/frontend/layouts/Cart.vue +++ b/frontend/layouts/Cart.vue @@ -40,7 +40,7 @@ const hasCartItem = computed(() => !!cart.value && cart.value.items.length! > 0) class="flex items-center gap-2 text-sm lg:text-[1rem] font-medium" > @@ -49,7 +49,7 @@ const hasCartItem = computed(() => !!cart.value && cart.value.items.length! > 0)
-

+

{{ pageTitle }}