Skip to content

Commit

Permalink
Fix mobile view with delegate button (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaut authored Sep 16, 2024
1 parent 2dd7670 commit e0ec2a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/DelegateCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ export const DelegateCard = ({ delegate: d }: Props) => {

return (
<Card className="mb-5 flex flex-col border p-2">
<div className="flex columns-3">
<div className="flex flex-col md:flex-row">
<div className="vertical center p-2">
<img className="rounded-full" width="100" src={d.image} />
</div>
<div className="w-[85%] p-2">
<div className="p-2 md:w-[85%]">
<div className="py-2 text-xl font-semibold">{d.name}</div>
<div className="text-slate-600">
<div className="break-words">{d.shortDescription}</div>
Expand Down

0 comments on commit e0ec2a7

Please sign in to comment.