fix(rpubs): adjust editor height to account for sub-nav bar

The editor used calc(100vh - 92px) which only accounted for header+tab
row, but the rpubs sub-nav (~48px) pushed the Generate Preview button
below the fold. Now uses calc(100vh - 140px).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-21 16:18:43 -07:00
parent fec0149f55
commit 9ed39d5cd0
1 changed files with 1 additions and 1 deletions

View File

@ -782,7 +782,7 @@ export class FolkPubsEditor extends HTMLElement {
return `<style>
:host {
display: block;
height: calc(100vh - 92px);
height: calc(100vh - 140px);
background: var(--rs-bg-page);
color: var(--rs-text-primary);
}