From 6e4ecf2bd998ee1de0c0b515ac9f7299e38afa8c Mon Sep 17 00:00:00 2001 From: Alexander King Date: Mon, 18 Dec 2023 15:49:08 -0800 Subject: [PATCH] Quick fix to editor sizing (#44) --- examples/tiptap/src/components/TextEditor.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/tiptap/src/components/TextEditor.css b/examples/tiptap/src/components/TextEditor.css index 4a5efdc..36204ab 100644 --- a/examples/tiptap/src/components/TextEditor.css +++ b/examples/tiptap/src/components/TextEditor.css @@ -100,7 +100,9 @@ } .editor__content { - max-width: 668px; + max-width: 700px; + width: 100%; + box-sizing: border-box; align-self: center; flex: 1 1 auto; overflow-x: hidden;