From 762803e182b2de4fe064725a59d8661a573ebbd7 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Fri, 23 Jan 2026 10:22:06 +0000 Subject: [PATCH] Adjust header padding for chat overlay Co-authored-by: cursor.sh --- index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 337b19c..1343167 100644 --- a/index.html +++ b/index.html @@ -1398,8 +1398,12 @@ } } - /* Desktop: adjust article margin when chat is visible */ + /* Desktop: keep header and article clear of chat */ @media (min-width: 769px) { + header .container { + padding-right: calc(350px + clamp(12px, 2vw, 20px)); + } + article { margin-right: 350px; }