[WEB-3753] fix: font size for comment box changed #6881

This commit is contained in:
Akshita Goyal 2025-04-07 19:06:04 +05:30 committed by GitHub
parent ac84d6ecf0
commit c3cfcc1b92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -105,7 +105,7 @@ export const CommentCreate: FC<TCommentCreate> = observer((props) => {
}}
ref={editorRef}
initialValue={value ?? "<p></p>"}
containerClassName="min-h-min [&_p]:!p-0 [&_p]:!text-base"
containerClassName="min-h-min [&_p]:!p-0 [&_p]:!text-sm"
onChange={(comment_json, comment_html) => onChange(comment_html)}
accessSpecifier={accessValue ?? EIssueCommentAccessSpecifier.INTERNAL}
handleAccessChange={onAccessChange}