diff options
| author | Adam <[email protected]> | 2025-12-18 04:28:03 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-18 04:28:03 -0600 |
| commit | fe65ed6a6109c61f5bc7a2524f7386e577d28159 (patch) | |
| tree | 0e72df49e9b1b949ca0288f4667e0c497e2b201c | |
| parent | e37a75a411c584d3e463662a0219fd342d4247ab (diff) | |
| download | opencode-fe65ed6a6109c61f5bc7a2524f7386e577d28159.tar.gz opencode-fe65ed6a6109c61f5bc7a2524f7386e577d28159.zip | |
fix(desktop): disable pinch to zoom
| -rw-r--r-- | packages/desktop/src/index.css | 5 |
1 files changed, 5 insertions, 0 deletions
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; } |
