From c2c87d24bffaa1a0e179ee02f6ae0fb26c213050 Mon Sep 17 00:00:00 2001 From: ydy0615 Date: Sat, 7 Feb 2026 13:00:24 +0800 Subject: [PATCH] style(editor): remove max-width limit on editor content Allows the markdown editor to expand to full width instead of being constrained to 900px, providing better use of available screen real estate. --- src/components/MilkdownEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MilkdownEditor.vue b/src/components/MilkdownEditor.vue index 4df2b36..4e5338e 100644 --- a/src/components/MilkdownEditor.vue +++ b/src/components/MilkdownEditor.vue @@ -275,7 +275,7 @@ onUnmounted(() => { } .milkdown-editor :deep(.milkdown) { - max-width: 900px; + max-width: none; margin: 0 auto !important; padding: 20px 40px !important; min-height: calc(100vh - 40px);