Feat v0.8.4 docs surface fix (#71)
All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-runners (push) Has been skipped
CI/CD / e2e-smoke (push) Has been skipped
CI/CD / test-frontend (push) Successful in 6s
CI/CD / test-go-pg (push) Successful in 2m53s
CI/CD / test-sqlite (push) Successful in 2m56s
CI/CD / build-and-deploy (push) Successful in 1m18s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #71.
This commit is contained in:
2026-04-03 10:43:13 +00:00
committed by xcaliber
parent 190905b3e6
commit 3c403dd884
10 changed files with 180 additions and 36 deletions

View File

@@ -5,7 +5,8 @@
.extension-surface {
display: flex;
flex-direction: column;
height: 100%;
flex: 1;
min-height: 0;
overflow: hidden;
}

View File

@@ -22,13 +22,13 @@
/* ── Docs Surface ────────────────────────── */
.surface-docs {
display: flex; flex-direction: column; height: 100%; overflow: hidden;
display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden;
}
/* ── Settings Surface ────────────────────── */
.surface-settings {
display: flex; height: 100%; overflow: hidden;
display: flex; flex: 1; min-height: 0; overflow: hidden;
}
.settings-topbar {
display: flex; align-items: center; gap: var(--sp-3);
@@ -89,7 +89,7 @@
/* ── Admin Surface ───────────────────────── */
.surface-admin {
display: flex; flex-direction: column; height: 100%; overflow: hidden;
display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden;
}
.admin-topbar {
display: flex; align-items: center; gap: var(--sp-3);
@@ -168,7 +168,7 @@
/* ── Editor Surface ──────────────────────── */
.surface-editor {
display: flex; flex-direction: column; height: 100%; overflow: hidden;
display: flex; flex-direction: column; flex: 1; min-height: 0; overflow: hidden;
}
.editor-topbar {
display: flex; align-items: center; gap: var(--sp-2);