feat: note editor plus large — max-w-5xl body + max-w-4xl content + dialog 1800px
Full page editor: - Container: max-w-4xl → max-w-5xl (896px → 1024px) - Content column: max-w-3xl → max-w-4xl (768px → 896px) - Toolbar: max-w-5xl mx-auto (aligné avec le body) Dialog editor: - max-w 1600px → 1800px, 95vw → 97vw - Hauteur 90vh → 92vh Résultat: ~128px de largeur de lecture supplémentaire sur grand écran
This commit is contained in:
@@ -72,8 +72,8 @@ export function NoteEditorFullPage({ onClose }: NoteEditorFullPageProps) {
|
||||
{/* TOOLBAR */}
|
||||
<NoteEditorToolbar mode="fullPage" onClose={onClose} onToggleAttachments={() => setUploadTrigger(v => v + 1)} attachmentsCount={attachmentsCount} />
|
||||
|
||||
{/* BODY — max-w-4xl, responsive px, py-16 */}
|
||||
<div className="max-w-4xl mx-auto w-full px-6 sm:px-12 py-16 space-y-12 min-w-0">
|
||||
{/* BODY — max-w-5xl, responsive px, py-16 */}
|
||||
<div className="max-w-5xl mx-auto w-full px-6 sm:px-12 py-16 space-y-12 min-w-0">
|
||||
|
||||
{/* Breadcrumb + Title block */}
|
||||
<div className="space-y-4">
|
||||
@@ -130,8 +130,8 @@ export function NoteEditorFullPage({ onClose }: NoteEditorFullPageProps) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Content area — max-w-3xl for wider reading column */}
|
||||
<div className="max-w-3xl mx-auto w-full space-y-8 pb-32">
|
||||
{/* Content area — max-w-4xl for wider reading column */}
|
||||
<div className="max-w-4xl mx-auto w-full space-y-8 pb-32">
|
||||
{state.quotaExceededFeature === 'reformulate' && (
|
||||
<InlinePaywall
|
||||
feature="reformulate"
|
||||
|
||||
Reference in New Issue
Block a user