Feat v0.6.10 viewport foundation
Some checks failed
CI/CD / test-frontend (pull_request) Has been cancelled
CI/CD / test-sqlite (pull_request) Has been cancelled
CI/CD / test-go-pg (pull_request) Has been cancelled
CI/CD / build-and-deploy (pull_request) Has been cancelled
CI/CD / detect-changes (pull_request) Has been cancelled

Single layout model: body → shell → surface. CSS zoom replaces
transform: scale() — no more getBoundingClientRect hacks. Extension
surfaces use height: 100% instead of 100vh. All viewport-height
declarations use 100dvh fallbacks for mobile browsers.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-01 10:28:35 +00:00
parent 617d81e7d4
commit 4dd3fe622e
19 changed files with 94 additions and 87 deletions

View File

@@ -12,7 +12,7 @@
.chat-app {
display: flex;
flex-direction: column;
height: 100vh;
height: 100%;
overflow: hidden;
background: var(--bg);
color: var(--text);
@@ -22,7 +22,7 @@
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
height: 100%;
}
.chat-body {