From 025563d60e73f2ac87a3a4261753034d7f7a9a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fukan=20=C3=9Crker?= Date: Thu, 28 Dec 2023 20:42:28 +0300 Subject: [PATCH] editor content overflow fixed --- static/css/editor.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/static/css/editor.css b/static/css/editor.css index 3a2f7c7e..a1fb49fb 100644 --- a/static/css/editor.css +++ b/static/css/editor.css @@ -15,3 +15,14 @@ .note-modal-content * { color: black !important; } + +.note-editor { + width: 45rem; + margin: auto; +} + +@media screen and (max-width: 900px) { + .note-editor { + width: 90%; + } +}