Skip to content

Commit

Permalink
Merge pull request #433 from DTS-STN/learn-card-hover
Browse files Browse the repository at this point in the history
Learn Card Hover Effect
  • Loading branch information
CurtisUnderwood committed Jun 20, 2023
2 parents 8075ab0 + a4f2066 commit d26fc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/learn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const LearnCard: FC<LearnCardProps> = ({ desciption, href, id, imageSrc, minRead
const { t } = useTranslation('learn')
const uniqueId = useId()
return (
<Card id={`${uniqueId}-card-${id}`} className="h-full">
<Card id={`${uniqueId}-card-${id}`} className="h-full hover:shadow-md hover:shadow-gray-400 duration-100">
<CardActionArea component={Link} href={href} className="h-full" aria-describedby={`${uniqueId}-card-${id}-title`}>
<div className="relative h-64 ">
<Image
Expand Down

0 comments on commit d26fc55

Please sign in to comment.