fix: added padding bottom to editor container (#6712)

This commit is contained in:
Vipin Chaudhary 2025-03-06 15:38:53 +05:30 committed by GitHub
parent a40e44c6d5
commit 4958be7898
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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