diff --git a/frontend/src/pages/EditorPage.jsx b/frontend/src/pages/EditorPage.jsx index 0d8c8c5..de1bc50 100644 --- a/frontend/src/pages/EditorPage.jsx +++ b/frontend/src/pages/EditorPage.jsx @@ -204,22 +204,22 @@ export default function EditorPage() {
- + + >☰ Chapters + >{focusMode ? '⊠' : '⊡'} {focusMode ? 'Exit Focus' : 'Focus'}
{promptText && (
@@ -234,7 +234,7 @@ export default function EditorPage() {
{statusLabel[saveStatus]}
- + {exportOpen && (
diff --git a/frontend/src/styles/index.css b/frontend/src/styles/index.css index 03e32a9..96ab45c 100644 --- a/frontend/src/styles/index.css +++ b/frontend/src/styles/index.css @@ -92,7 +92,7 @@ padding: 0; } -html { height: 100%; } +html { height: 100%; overflow-x: hidden; } body { background: var(--bg); @@ -1233,7 +1233,11 @@ button { cursor: pointer; font-family: inherit; } .editor-body .ProseMirror { padding: 1rem 1.1rem; font-size: 1rem; } .editor-body .ProseMirror h1 { font-size: 1.4rem; } - .topbar-left .btn:not(.back-btn) span { display: none; } + .editor-topbar { padding: 0.4rem 0.5rem; gap: 0.25rem; } + .topbar-left, .topbar-right { gap: 0.25rem; } + .editor-topbar .btn-ghost { padding: 0.35rem 0.5rem; font-size: 0.72rem; } + .topbar-left span, .topbar-right span { display: none; } + .save-status { display: none; } .cover-img { max-height: 160px; } .login-box { padding: 2.25rem 1.5rem 2rem; }