Skip to content

Commit

Permalink
♿️(testimonies) make testimonies tabbable
Browse files Browse the repository at this point in the history
now keyboard users can view every testimony
  • Loading branch information
manuhabitela committed Apr 2, 2024
1 parent 1144405 commit bffd614
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/sections/Testimonies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ interface CardProps {
}

const Card = ({ title, quote, img, entity }: CardProps) => (
<div className="flex flex-col bg-white p-7 text-left flex-1 max-w-[36rem] lg:min-w-[18rem]">
<div
tabIndex={0}
className="flex flex-col bg-white p-7 text-left flex-1 max-w-[36rem] lg:min-w-[18rem]"
>
<h3 className="h-[114px] w-[140px] relative">
<Image
src={img}
Expand Down

0 comments on commit bffd614

Please sign in to comment.