Skip to content

Commit 683bef7

Browse files
V48 Gate 3 (implementation-only): deposit route-state cards in one row of three columns
The Earnings / Governance / Session collapsible cards on /deposits render as one row of three columns from tablet width up (items-start so an expanded card doesn't stretch its collapsed neighbors), reverting to a single column inside the narrow xl side rail. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 391613e commit 683bef7

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

uapi/app/deposits/DepositPageClient.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2237,7 +2237,14 @@ export default function DepositPageClient() {
22372237
</section>
22382238
</div>
22392239

2240-
<aside className="grid h-fit gap-5" aria-label="Deposit route state">
2240+
{/* One row, three columns (Earnings / Governance / Session) when the
2241+
aside spans the page; back to a single column inside the narrow
2242+
xl side rail. items-start keeps an expanded card from
2243+
stretching its collapsed neighbors. */}
2244+
<aside
2245+
className="grid h-fit items-start gap-5 tablet:grid-cols-3 xl:grid-cols-1"
2246+
aria-label="Deposit route state"
2247+
>
22412248
<details className="border border-white/10 bg-white/[0.035] px-4 py-4">
22422249
<summary className="flex cursor-pointer list-none items-start justify-between gap-3 outline-none">
22432250
<div>

0 commit comments

Comments
 (0)