Skip to content

Commit

Permalink
Merge pull request #558 from SCCapstone/fixChatInput
Browse files Browse the repository at this point in the history
fix chat input
  • Loading branch information
evan-scales authored Apr 22, 2024
2 parents 051214d + dd95846 commit 33d16b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 0 additions & 4 deletions FU.SPA/src/components/Chat.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
.chat-actions {
gap: 10px;

input {
width: 1500px;
}

button {
/* background-color: #23194f; */
height: 100%;
Expand Down
3 changes: 2 additions & 1 deletion FU.SPA/src/components/Chat.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,9 @@ export default function Chat({ chatId }) {
/>
))}
</CardContent>
<CardActions className="chat-actions">
<CardActions className="chat-actions" style={{ width: '100%' }}>
<TextField
style={{ width: '100%' }}
type="text"
value={message}
onChange={(e) => setMessage(e.target.value)}
Expand Down

0 comments on commit 33d16b2

Please sign in to comment.