style: remove unnecessary bottom padding from the rich text editor

This commit is contained in:
Aaryan Khandelwal
2024-11-08 20:00:56 +05:30
parent 389ee74ff5
commit 2d665db5b5

View File

@@ -54,7 +54,7 @@ export const RichTextEditor = forwardRef<EditorRefApi, RichTextEditorWrapperProp
suggestions: mentionSuggestions,
}}
{...rest}
containerClassName={cn("relative pl-3 pb-3", containerClassName)}
containerClassName={cn("relative pl-3", containerClassName)}
/>
);
});