From fe65ed6a6109c61f5bc7a2524f7386e577d28159 Mon Sep 17 00:00:00 2001 From: Adam <2363879+adamdotdevin@users.noreply.github.com> Date: Thu, 18 Dec 2025 04:28:03 -0600 Subject: [PATCH] fix(desktop): disable pinch to zoom --- packages/desktop/src/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/desktop/src/index.css b/packages/desktop/src/index.css index e40f0842b..5481cb604 100644 --- a/packages/desktop/src/index.css +++ b/packages/desktop/src/index.css @@ -1,6 +1,11 @@ @import "@opencode-ai/ui/styles/tailwind"; :root { + html, + body { + touch-action: manipulation; + } + a { cursor: default; }