Skip to content

Commit 8f7ce35

Browse files
committed
[CHORE] 파일 전송 버튼 디자인 수정
1 parent 7821606 commit 8f7ce35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/chat/FileSendButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ const FileSendButton = ({ onUploadSuccess }: FileSendButtonProps) => {
8585
<button
8686
onClick={handleButtonClick}
8787
disabled={uploading}
88-
className="my-2 w-fit rounded-md bg-blue-500 p-4 text-white transition-colors hover:bg-blue-600 disabled:cursor-not-allowed disabled:bg-gray-400"
88+
className="my-2 w-fit rounded-md bg-[#0D2D84] p-4 text-white transition-colors hover:bg-[#0a2366] disabled:cursor-not-allowed disabled:bg-gray-400"
8989
>
9090
{uploading ? '업로드 중...' : '📎파일 업로드'}
9191
</button>
92-
{uploadStatus && <p className="text-sm text-red-600">dd{uploadStatus}</p>}
92+
{uploadStatus && <p className="text-sm text-red-600">{uploadStatus}</p>}
9393
</div>
9494
);
9595
};

0 commit comments

Comments
 (0)