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) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 08:50:29 +11:00
parent ab1134eac0
commit 92716c08e3

View File

@@ -61,8 +61,9 @@ export const LineItem = React.forwardRef<HTMLDivElement, LineItemProps>(
justifyContent: 'space-between', justifyContent: 'space-between',
gap: 2, gap: 2,
...(isTotal && { ...(isTotal && {
pt: 1.5, pt: 2,
mt: 1.5, pb: 0.5,
mt: 2,
borderTop: '1px solid', borderTop: '1px solid',
borderColor: 'divider', borderColor: 'divider',
}), }),