From 61b727bb78d2dbc6510f5e4fc86e9726fdcb573a Mon Sep 17 00:00:00 2001 From: lucaronin Date: Tue, 24 Feb 2026 13:09:19 +0100 Subject: [PATCH] fix: add 1px inset border between macOS window frame and app content The transparent titlebar window blended with the app content because both shared the same background color. An inset box-shadow using the existing --border-primary color creates a subtle separation. The 10px border-radius matches the macOS window corner radius. Co-Authored-By: Claude Opus 4.6 --- src/App.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.css b/src/App.css index e9c59281..42b17ef3 100644 --- a/src/App.css +++ b/src/App.css @@ -5,6 +5,8 @@ height: 100vh; width: 100vw; overflow: hidden; + border-radius: 10px; + box-shadow: inset 0 0 0 1px var(--border-primary); } .app {