From ebc79fe99966ae24cf47b6b0ff4cad159ab87f1e Mon Sep 17 00:00:00 2001 From: Marty Bostick Date: Sat, 11 Jul 2026 13:14:16 +0000 Subject: [PATCH] Fix layout: checkbox-row full-width in grid, shared-input overflow fix - checkbox-row now spans full grid width (grid-column: 1 / -1) - Fixed shared link input: min-width:0, overflow:hidden, text-overflow:ellipsis - Made '(sends the plan as-is)' a muted inline span instead of all-caps label text - Removed unnecessary margin-bottom on checkbox-row --- index.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e00be65..b5cf39c 100644 --- a/index.html +++ b/index.html @@ -173,7 +173,8 @@ border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; - margin-bottom: 18px; + margin-bottom: 0; + grid-column: 1 / -1; } .tg-link { display: inline-flex; @@ -378,6 +379,7 @@ } .shared-link-row input { flex: 1; + min-width: 0; font-size: 0.78rem; font-family: monospace; color: var(--accent); @@ -386,6 +388,9 @@ border-radius: var(--radius-sm); padding: 7px 10px; outline: none; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .copy-sm-btn { background: var(--accent); @@ -517,7 +522,7 @@
- +