Skip to content

Commit

Permalink
Merge pull request #371 from Game-as-a-Service/fix/chat-room-color
Browse files Browse the repository at this point in the history
πŸ’„ fix chat room color
  • Loading branch information
JohnsonMao authored Feb 24, 2024
2 parents 53b83ef + 5fb18a5 commit cc14ca0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/rooms/RoomChatroom/RoomChatroom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ export default function RoomChatroom({ roomId }: RoomChatroom) {
<ChatMessage {...msg} key={msg.timestamp + index} />
))}
</div>
<div className="py-[5px] px-[7px] flex bg-dark29">
<div className="py-[5px] px-[7px] flex bg-transparent border border-t-0 rounded-b-lg">
<textarea
role="textarea"
className="w-full bg-dark1E resize-none focus:outline-none text-sm px-[13px] py-[9px] h-[38px] scrollbar text-white"
className="w-full bg-transparent resize-none focus:outline-none text-sm px-[13px] py-[9px] h-[38px] scrollbar text-white"
value={inputValue}
onChange={handleTextChange}
onKeyDown={handleInputKeyDown}
Expand Down

0 comments on commit cc14ca0

Please sign in to comment.