From 9552ae4c4c28a9bc36d30c5f516855d60f39c82f Mon Sep 17 00:00:00 2001 From: alisaza Date: Fri, 11 Sep 2026 15:54:53 +0330 Subject: [PATCH] fix(settlements): adjust padding in completed status section and global styles Updated the padding in the completed status section of the Settlements page for better spacing. Additionally, streamlined the consumer booking action bar styles by removing redundant padding properties. --- app/(dashboard)/settlements/page.tsx | 2 +- styles/globals.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(dashboard)/settlements/page.tsx b/app/(dashboard)/settlements/page.tsx index 569b17f..9036d0b 100644 --- a/app/(dashboard)/settlements/page.tsx +++ b/app/(dashboard)/settlements/page.tsx @@ -245,7 +245,7 @@ const SettlementsPage = () => { ) : null} {detailTarget?.status === 'completed' ? ( -
+

شماره پیگیری: {detailTarget.manualTrackingCode ?? '—'} diff --git a/styles/globals.css b/styles/globals.css index 3a85170..e2d68ba 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -632,7 +632,7 @@ /* Fixed booking/reserve bar — same viewport slot as BottomNav on event detail. */ .consumer-booking-action-bar { - @apply fixed inset-x-0 z-50 px-4 py-4; + @apply fixed inset-x-0 z-50 p-4; bottom: calc(var(--keyboard-inset, 0px)); width: 100%; max-width: var(--consumer-app-max-width);