Skip to content

Commit

Permalink
Fix: aumentado tamanho do botão para melhorar UX
Browse files Browse the repository at this point in the history
  • Loading branch information
ggfto committed Dec 13, 2024
1 parent fc118df commit a79af5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ContributorLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { IconBrandGithubFilled } from '@tabler/icons-react';

const ContributorLink: React.FC<{ image: string; username: string }> = ({ image, username }) => {
return (
<div className="flex w-32 flex-col items-center justify-center gap-2">
<div className="flex w-40 flex-col items-center justify-center gap-2">
<img src={image} alt={`${username}-image`} className="rounded-full bg-neutral-100 shadow-md dark:bg-neutral-900" />
<a href={`https://github.com/${username}`} target="_blank" className="w-full">
<button className="flex w-full items-center justify-center gap-2 rounded-md bg-green-500/20 p-2 text-green-500 hover:bg-green-500/30">
Expand Down

0 comments on commit a79af5e

Please sign in to comment.