0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fixed comment form being cut off at the top (#21463)

No ref
This commit is contained in:
Sanne de Vries 2024-10-30 09:56:42 +01:00 committed by GitHub
parent d4d45de3de
commit 119a913ce5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -96,7 +96,7 @@ const MainForm: React.FC<Props> = ({commentsCount}) => {
const isOpen = editor?.isFocused ?? false;
return (
<div ref={formEl} className='mt-[-4px] px-3 pb-2 pt-3' data-testid="main-form">
<div ref={formEl} className='px-3 pb-2 pt-3' data-testid="main-form">
<Form editor={editor} isOpen={isOpen} reduced={false} {...submitProps} />
</div>
);