diff --git a/resources/js/components/accounts/account-list-card.tsx b/resources/js/components/accounts/account-list-card.tsx index 6416df9c..d3418a73 100644 --- a/resources/js/components/accounts/account-list-card.tsx +++ b/resources/js/components/accounts/account-list-card.tsx @@ -440,7 +440,9 @@ export function AccountListCard({ )} /> {dragHandle && ( - + // The grip glyph is narrower than the type icon; + // nudge it to the left edge to line up with it. + {dragHandle} )} diff --git a/resources/js/components/dashboard/account-balance-card.tsx b/resources/js/components/dashboard/account-balance-card.tsx index 8d169829..317fc017 100644 --- a/resources/js/components/dashboard/account-balance-card.tsx +++ b/resources/js/components/dashboard/account-balance-card.tsx @@ -205,7 +205,9 @@ export function AccountBalanceCard({ )} /> {dragHandle && ( - + // The grip glyph is narrower than the type icon; nudge it + // to the right edge so it lines up with the icon it replaces. + {dragHandle} )} diff --git a/resources/js/components/ui/card.tsx b/resources/js/components/ui/card.tsx index ad305943..9008b4e1 100644 --- a/resources/js/components/ui/card.tsx +++ b/resources/js/components/ui/card.tsx @@ -29,7 +29,7 @@ function CardHeader({ className, ...props }: React.ComponentProps<"div">) { return (
)