Skip to content

Commit

Permalink
change channelcard hover color
Browse files Browse the repository at this point in the history
  • Loading branch information
P-man2976 committed Aug 29, 2024
1 parent 8711723 commit 251c62f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/channel/ChannelCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function ChannelCard({
case "sm":
return (
<div
className="flex items-center gap-4 rounded-lg bg-base-3 p-4 hover:cursor-pointer"
className="flex items-center gap-4 rounded-lg bg-base-3 p-4 transition-all hover:cursor-pointer hover:bg-base-4"
onClick={goToChannelClickHandler}
>
<Link to={channelHref} className="flex grow items-center gap-4">
Expand Down Expand Up @@ -144,7 +144,7 @@ export function ChannelCard({
return (
// Set min-height because react-virtuoso will break if the height is not fixed
<div
className="group relative flex h-full min-h-[24rem] w-full flex-col items-center gap-2 rounded-md bg-base-3 p-4 hover:cursor-pointer"
className="group relative flex h-full min-h-[24rem] w-full flex-col items-center gap-2 rounded-md bg-base-3 p-4 transition-all hover:cursor-pointer hover:bg-base-4"
onClick={goToChannelClickHandler}
>
<Link
Expand Down

0 comments on commit 251c62f

Please sign in to comment.