From ac4346664b400646ff21d57f669587857028d42b Mon Sep 17 00:00:00 2001 From: Santhosh Raju Date: Mon, 22 Jun 2026 09:06:01 +0200 Subject: [PATCH] fix(linux): enable scrollbar interaction in borderless window Add -webkit-app-region: no-drag to scrollbar pseudo-elements to allow clicking and dragging the scrollbar in borderless windows. Without this, the header's drag region prevented scrollbar interaction on macOS. Co-Authored-By: Claude Sonnet 4.5 --- src/styles/base.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/styles/base.css b/src/styles/base.css index bf8b53d..b2c095d 100644 --- a/src/styles/base.css +++ b/src/styles/base.css @@ -32,10 +32,12 @@ code { ::-webkit-scrollbar { width: 6px; height: 6px; + -webkit-app-region: no-drag; /* Allow scrollbar interaction in borderless windows */ } ::-webkit-scrollbar-track { background: transparent; + -webkit-app-region: no-drag; } ::-webkit-scrollbar-thumb { @@ -43,6 +45,7 @@ code { border: 1px solid transparent; background-clip: content-box; border-radius: 99px; + -webkit-app-region: no-drag; } ::-webkit-scrollbar-thumb:hover {