diff --git a/src/components/questions/QuestionSplitView.tsx b/src/components/questions/QuestionSplitView.tsx
index 492e5ee..0a7d5bf 100644
--- a/src/components/questions/QuestionSplitView.tsx
+++ b/src/components/questions/QuestionSplitView.tsx
@@ -323,11 +323,10 @@ export function QuestionSplitView({ currentUserId }: { currentUserId: string })
style={{ borderTop: "1px solid var(--border)" }}
>
-
setReplyText(e.target.value)}
onKeyDown={(e) => {
@@ -340,26 +339,29 @@ export function QuestionSplitView({ currentUserId }: { currentUserId: string })
placeholder={
detail.status === "CLOSED" ? "Вопрос закрыт" : "Написать ответ..."
}
- className="flex-1 text-sm px-3 py-2 outline-none"
+ rows={4}
+ className="w-full text-sm px-3 py-2 outline-none resize-y"
style={{
border: "1px solid var(--border)",
background: "var(--background)",
color: "var(--foreground)",
}}
/>
-
+
+
+
{error && (