From fbeea7027c69b396815394945bcdb7ee66e7b9e7 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Sun, 5 Jul 2026 18:19:06 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20notes=20encore=20plus=20larges=20?= =?UTF-8?q?=E2=80=94=20max-w-6xl=20body=20+=20font=2018px?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Full page editor: - Container: max-w-5xl → max-w-6xl (1024px → 1152px) - Content: max-w-4xl → max-w-5xl (896px → 1024px) - Toolbar: max-w-5xl → max-w-6xl (aligné) Dialog editor: - max-w 1800px → 2000px, 97vw → 98vw - Hauteur 92vh → 94vh Font editor: - editor-body-size: 16px → 18px (lecture plus confortable) --- memento-note/app/globals.css | 2 +- .../components/note-editor/note-editor-dialog.tsx | 2 +- .../components/note-editor/note-editor-full-page.tsx | 8 ++++---- .../components/note-editor/note-editor-toolbar.tsx | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/memento-note/app/globals.css b/memento-note/app/globals.css index 826483d..5382a8e 100644 --- a/memento-note/app/globals.css +++ b/memento-note/app/globals.css @@ -985,7 +985,7 @@ html.font-system * { /* Editor body size — used for textarea and ProseMirror content */ :root { - --editor-body-size: var(--user-font-size, 16px); + --editor-body-size: var(--user-font-size, 18px); } body { diff --git a/memento-note/components/note-editor/note-editor-dialog.tsx b/memento-note/components/note-editor/note-editor-dialog.tsx index 6bf32a5..d0f3ab4 100644 --- a/memento-note/components/note-editor/note-editor-dialog.tsx +++ b/memento-note/components/note-editor/note-editor-dialog.tsx @@ -46,7 +46,7 @@ export function NoteEditorDialog({ onClose }: NoteEditorDialogProps) { diff --git a/memento-note/components/note-editor/note-editor-full-page.tsx b/memento-note/components/note-editor/note-editor-full-page.tsx index 81043b9..dd833a6 100644 --- a/memento-note/components/note-editor/note-editor-full-page.tsx +++ b/memento-note/components/note-editor/note-editor-full-page.tsx @@ -72,8 +72,8 @@ export function NoteEditorFullPage({ onClose }: NoteEditorFullPageProps) { {/* TOOLBAR */} setUploadTrigger(v => v + 1)} attachmentsCount={attachmentsCount} /> - {/* BODY — max-w-5xl, responsive px, py-16 */} -
+ {/* BODY — max-w-6xl, responsive px, py-16 */} +
{/* Breadcrumb + Title block */}
@@ -130,8 +130,8 @@ export function NoteEditorFullPage({ onClose }: NoteEditorFullPageProps) {
)} - {/* Content area — max-w-4xl for wider reading column */} -
+ {/* Content area — max-w-5xl for wider reading column */} +
{state.quotaExceededFeature === 'reformulate' && ( +