From a591f5b35ccefb934fcb13ea99b40f8709579b90 Mon Sep 17 00:00:00 2001 From: Rohit C Prasad Date: Sat, 15 Aug 2026 12:51:39 -0700 Subject: [PATCH] Request cards join the 760px composer column dirreq-card (tool/directory/plan cards) went full-bleed on wide monitors. --- surfaces/gui/src/styles.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/surfaces/gui/src/styles.css b/surfaces/gui/src/styles.css index 6a02fffb..fae8fc0b 100644 --- a/surfaces/gui/src/styles.css +++ b/surfaces/gui/src/styles.css @@ -789,7 +789,10 @@ button.btn.danger { color: var(--accent); } /* request_directory prompt (agent-initiated) */ .dirreq-card { background: var(--panel); border: 1px solid var(--accent); border-radius: 12px; - padding: 12px 14px; margin-bottom: 9px; box-shadow: 0 0 0 3px var(--accent-soft); + padding: 12px 14px; box-shadow: 0 0 0 3px var(--accent-soft); + /* Same column as the composer/approval dock — full-bleed on wide monitors read + broken (owner catch 2026-08-15 on the tool-request card). */ + max-width: 760px; margin: 0 auto 9px; } .dirreq-head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; color: var(--ink); } .dirreq-head .ico { color: var(--accent); }