From 1bb8eed0e6272dfd0d7def2238dcb7d52b74561e Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 8 Jun 2026 17:00:14 +0000 Subject: [PATCH] Fix claimant card gap: push field content to bottom of each cell Label+input pairs now stick to the bottom of their grid cell so the labels sit flush above the inputs even when one label wraps. https://claude.ai/code/session_01JyuActqTJG5tuRQNLmT7fZ --- app/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/app/index.html b/app/index.html index c722314..f96774f 100644 --- a/app/index.html +++ b/app/index.html @@ -346,6 +346,7 @@ body{ /* ── Responsive ───────────────────────────────────────────────────────────── */ @media (max-width:680px){ .kb-grid.cols-2,.kb-grid.cols-3,.kb-grid.cols-4,.kb-grid.claim-grid{grid-template-columns:1fr;} +.kb-grid.claim-grid .kb-field{justify-content:flex-end;} .kb-header{flex-direction:column;gap:14px;} .kb-doctitle{text-align:left;} .kb-line-section.row1,.kb-line-section.row2,.kb-line-section.row3{grid-template-columns:1fr;}