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:
parent
fec0149f55
commit
9ed39d5cd0
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue