From a01629b6b8e93480a9c49b9f1b3301a1450df101 Mon Sep 17 00:00:00 2001 From: Bojan Mojsilovic Date: Wed, 27 Dec 2023 16:00:17 +0100 Subject: [PATCH] Fix new note editor max-height --- src/components/NewNote/EditBox/EditBox.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NewNote/EditBox/EditBox.module.scss b/src/components/NewNote/EditBox/EditBox.module.scss index 8607bbd..cf87ee5 100644 --- a/src/components/NewNote/EditBox/EditBox.module.scss +++ b/src/components/NewNote/EditBox/EditBox.module.scss @@ -208,7 +208,7 @@ textarea::-webkit-scrollbar{ .editorScroll { min-height: 60px; - max-height: calc(60vh - 70px); + max-height: calc(60vh - 87px); overflow-y: scroll; margin-bottom: 48px;