From 0cc9ddb5767b6854d4d5a0b6b674d9f708dbb2e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Trzci=C5=84ski?= Date: Tue, 24 Sep 2024 12:17:49 +0200 Subject: [PATCH] [#65872] fix min height --- src/MystEditor.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/MystEditor.js b/src/MystEditor.js index 14842a8..051aa39 100644 --- a/src/MystEditor.js +++ b/src/MystEditor.js @@ -77,7 +77,10 @@ const FlexWrapper = styled.div` flex: 1; min-width: 0; height: 100%; - min-height: 500px; + + & > * { + min-height: 500px; + } `; const createExtraScopePlugin = (scope) => {