Skip to content

Commit 3c6db05

Browse files
author
Victoria Ivanova
committed
fix textarea styles: text
1 parent c82b233 commit 3c6db05

File tree

1 file changed

+3
-3
lines changed
  • frontend/src/pages/Report/components/Bug/components/Result

1 file changed

+3
-3
lines changed

frontend/src/pages/Report/components/Bug/components/Result/Result.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ const Result = ({
3030
}, [textareaRef]);
3131

3232
return (
33-
<div className="flex grow-1 flex-col text-xs font-semibold mb-1">
34-
<span className="mt-1 mb-1">{title}</span>
33+
<div className="flex grow-1 flex-col mb-1">
34+
<span className="mt-1 mb-1 font-semibold text-xs">{title}</span>
3535
<textarea
3636
ref={textareaRef}
3737
value={value}
3838
onChange={onChange}
39-
className="textarea w-full mb-3 bug-section p-4 bg-base-100 focus:outline-none"
39+
className="textarea w-full mb-3 p-3 bg-base-100 focus:outline-none"
4040
/>
4141
{withAttachments && (
4242
<div className="attachments w-1/2">

0 commit comments

Comments
 (0)