diff --git a/web/src/views/CustodyView.tsx b/web/src/views/CustodyView.tsx index d75d510..7d7aad0 100644 --- a/web/src/views/CustodyView.tsx +++ b/web/src/views/CustodyView.tsx @@ -5,6 +5,8 @@ import { remainingShort } from "../stats.js"; import { fmt, TYPE_GLYPHS } from "../format.js"; import { Btn, Card, Icon } from "../components/primitives/index.js"; +const GRID_COLS = "32px 2fr 1fr 1fr 1fr 280px"; + export function CustodyView({ data, onSelectItem, @@ -32,17 +34,23 @@ export function CustodyView({ ); return ( -
-
+
+
+
+ {checkedOut.length} item{checkedOut.length === 1 ? "" : "s"} checked out +

My Custody

-
- {checkedOut.length} item{checkedOut.length === 1 ? "" : "s"} checked out -
{checkedOut.length === 0 ? ( @@ -69,7 +77,7 @@ export function CustodyView({