Skip to content

Commit ebcc319

Browse files
committed
style記法の改善
1 parent 1863817 commit ebcc319

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/[docs_id]/chatForm.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,17 @@ export function ChatForm({ documentContent }: { documentContent: string }) {
3232
<>
3333
{isFormVisible && (
3434
<form className="border border-2 border-secondary shadow-md rounded-lg bg-base-100" style={{width:"100%", textAlign:"center", boxShadow:"-moz-initial"}} onSubmit={handleSubmit}>
35-
<div className="input-area" style={{height:"90px", margin:"10px"}}>
35+
<div className="input-area" style={{height:"90px"}}>
3636
<textarea
37-
className="textarea-ghost textarea-white textarea-md"
37+
className="textarea textarea-ghost textarea-md"
3838
placeholder="質問を入力してください"
3939
style={{width: "100%", height: "110px", resize: "none", outlineStyle: "none"}}
4040
value={inputValue}
4141
onChange={(e) => setInputValue(e.target.value)}
4242
disabled={isLoading}
4343
></textarea>
4444
</div>
45-
<br />
46-
<div className="controls" style={{display:"flex", alignItems:"center", justifyContent:"space-between"}}>
45+
<div className="controls" style={{margin:"22px 10px 10px 10px", display:"flex", alignItems:"center", justifyContent:"space-between"}}>
4746
<div className="left-icons">
4847
<button
4948
className="btn btn-soft btn-secondary rounded-full"

0 commit comments

Comments
 (0)