Skip to content

Commit

Permalink
Improve link padding
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Jun 24, 2024
1 parent 3990a8c commit 5a96509
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/bridge/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ export default function Page() {

function BridgeLink({ name, operator, href, logo }: Bridge) {
return (
<div className="flex items-center justify-between space-y-2 border border-taupe-300 bg-white p-4 sm:gap-32 sm:p-5">
<div className="flex items-center justify-between border border-taupe-300 bg-white p-4 sm:gap-32 sm:p-5">
<div className="flex items-center space-x-4">
<Image src={logo} width={60} height={60} alt="" className="rounded-full" />
<div className="flex flex-col">
<h2 className="font-serif text-xl">{name}</h2>
<h3 className="text-sm">{`By ${operator}`}</h3>
</div>
</div>
<SolidButton>
<A_Blank className="flex items-center space-x-2 py-1" href={href}>
<SolidButton className="all:p-0">
<A_Blank className="flex items-center space-x-2 px-5 py-3.5" href={href}>
<span>Bridge</span>
<ChevronIcon direction="e" width={12} height={12} />
</A_Blank>
Expand Down

0 comments on commit 5a96509

Please sign in to comment.