From 9a35b1fa4418383c624c3aea76cd8631bc49de9d Mon Sep 17 00:00:00 2001 From: gitstart-twenty <140154534+gitstart-twenty@users.noreply.github.com> Date: Mon, 4 Sep 2023 12:54:08 +0300 Subject: [PATCH] In Activities (Tasks / Notes) right drawer, while editing the body and displaying the styling bar, the bar should styling not be larger than the right drawer (#1414) Co-authored-by: KlingerMatheus --- front/src/modules/ui/editor/components/BlockEditor.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/front/src/modules/ui/editor/components/BlockEditor.tsx b/front/src/modules/ui/editor/components/BlockEditor.tsx index feef4cbf5..aafd640d4 100644 --- a/front/src/modules/ui/editor/components/BlockEditor.tsx +++ b/front/src/modules/ui/editor/components/BlockEditor.tsx @@ -18,6 +18,9 @@ const StyledEditor = styled.div` color: ${({ theme }) => theme.font.color.tertiary}; font-style: normal !important; } + .tippy-box:has(.mantine-Toolbar-root) { + transform: translateX(-13%); + } `; export function BlockEditor({ editor }: BlockEditorProps) {