Skip to content

Commit 9b4fee3

Browse files
committed
fix: wysiwyg text styling
1 parent f708868 commit 9b4fee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/app/src/components/WysiwygEditor/WysiwygEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export const WysiwygEditor = memo(({ value, onChange }: WysiwygEditorProps) => {
141141
) : (
142142
<textarea
143143
aria-label="Wpisz treść pytania"
144-
className="relative z-10 h-full w-full resize-none bg-white py-2 px-4 focus:outline-0 dark:bg-white-dark dark:text-white"
144+
className="prose prose-sm relative z-10 h-full w-full max-w-full resize-none bg-white py-2 px-4 focus:outline-0 dark:bg-white-dark dark:prose-invert md:prose-base"
145145
ref={textAreaRef}
146146
value={value}
147147
onChange={(event) => onChange(event.target.value)}

0 commit comments

Comments
 (0)