Skip to content

Commit

Permalink
Update background color in RoomCard component
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne committed Feb 19, 2024
1 parent ff0d541 commit 511de73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Room/RoomCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function RoomCard({ room, users }: { room: IRoom; users: string[] }) {
ref={roomRef}
href={`chat/${room.id}`}
className={`flex group relative gap-3 items-center p-2 flex-col sm:flex-row ${
room.id === roomId ? "bg-gray- dark:bg-gray-700" : ""
room.id === roomId ? "bg-gray-400 dark:bg-gray-700" : ""
} rounded-lg`}
>
<div>
Expand Down

0 comments on commit 511de73

Please sign in to comment.