From 92716c08e3d31c7e82cca2d47687749e66e2e006 Mon Sep 17 00:00:00 2001 From: Richie Date: Thu, 26 Mar 2026 08:50:29 +1100 Subject: [PATCH] LineItem total: increase top padding for visual balance mt/pt bumped from 1.5 (12px) to 2 (16px), add pb: 0.5 (4px) so the text sits more centred between the border-top and the content below. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/molecules/LineItem/LineItem.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/LineItem/LineItem.tsx b/src/components/molecules/LineItem/LineItem.tsx index ab3eb6b..302c62e 100644 --- a/src/components/molecules/LineItem/LineItem.tsx +++ b/src/components/molecules/LineItem/LineItem.tsx @@ -61,8 +61,9 @@ export const LineItem = React.forwardRef( justifyContent: 'space-between', gap: 2, ...(isTotal && { - pt: 1.5, - mt: 1.5, + pt: 2, + pb: 0.5, + mt: 2, borderTop: '1px solid', borderColor: 'divider', }),