Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, interactive-widget=resizes-content"
/>
<meta name="description" content="Parallel agentic development with Electron + React" />
<meta name="theme-color" content="#1e1e1e" />
<link rel="manifest" href="/manifest.json" />
Expand Down
11 changes: 9 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ const globalStyles = css`
html {
/* Prevent text size adjustment on orientation change */
-webkit-text-size-adjust: 100%;
/* Improve tap responsiveness */
touch-action: manipulation;
}

body {
Expand All @@ -79,6 +77,15 @@ const globalStyles = css`
[role="button"] {
min-height: 44px;
min-width: 44px;
/* Improve tap responsiveness on buttons only */
touch-action: manipulation;
}

/* Ensure input elements allow default touch behavior for iOS keyboard */
input,
textarea,
select {
touch-action: auto;
}
}

Expand Down