From 4612fe43e0eff4431e8fdbafaf236339a3b5eb12 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Tue, 24 Feb 2026 13:09:19 +0100 Subject: [PATCH 1/2] 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 { From ab3221dc13cb1609aabc05482ba0e78cfa4a6a5d Mon Sep 17 00:00:00 2001 From: lucaronin Date: Tue, 24 Feb 2026 13:11:28 +0100 Subject: [PATCH 2/2] docs: add design file placeholder for window-frame-border Co-Authored-By: Claude Opus 4.6 --- design/window-frame-border.pen | 1 + 1 file changed, 1 insertion(+) create mode 100644 design/window-frame-border.pen diff --git a/design/window-frame-border.pen b/design/window-frame-border.pen new file mode 100644 index 00000000..ebcc2d64 --- /dev/null +++ b/design/window-frame-border.pen @@ -0,0 +1 @@ +{"children":[],"variables":{}} \ No newline at end of file