From 8086a54d81967741bb9eb26678bc55ca080dbf88 Mon Sep 17 00:00:00 2001 From: Ilya Y <75578537+ilya-bkv@users.noreply.github.com> Date: Tue, 1 Aug 2023 13:26:45 +0300 Subject: [PATCH] remove position-relative in Editor (#153) --- src/components/Editor/Editor.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Editor/Editor.tsx b/src/components/Editor/Editor.tsx index 79ed2e94..a1f2baa7 100644 --- a/src/components/Editor/Editor.tsx +++ b/src/components/Editor/Editor.tsx @@ -250,7 +250,7 @@ export const Editor = (props: Props) => { }) return ( -
+ <>
(editorElRef.current = el)} id="editorBody" /> @@ -279,6 +279,6 @@ export const Editor = (props: Props) => { }} /> (floatingMenuRef.current = el)} /> -
+ ) }