Skip to content

Commit

Permalink
fix: place logos on claim on correct spot
Browse files Browse the repository at this point in the history
  • Loading branch information
RasenGUY committed Dec 6, 2023
1 parent edc5e49 commit fca22fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ClaimOnOtherNetworkSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ function ClaimOnOtherNetworkSection(props: React.AllHTMLAttributes<HTMLDivElemen

<div tw="flex self-start gap-x-[24px] ">
<div tw="flex px-[10px] py-[5px] rounded-[5px] bg-[#2E2E2E] justify-center items-center gap-x-[10px]">
<img src={optimismLogo} alt="optimism-logo" tw="w-[24px] h-[24px]"/>
<img src={arbitrumLogo} alt="arbitrum-logo" tw="w-[24px] h-[24px]" />
<NormalText>Arbitrum - Coming soon</NormalText>
</div>

<div tw="flex px-[10px] py-[5px] rounded-[5px] bg-[#2E2E2E] justify-center items-center gap-x-[10px]">
<img src={arbitrumLogo} alt="arbitrum-logo" tw="w-[24px] h-[24px]" />
<img src={optimismLogo} alt="optimism-logo" tw="w-[24px] h-[24px]"/>
<NormalText>Optimisim - Coming soon</NormalText>
</div>
</div>
Expand Down

0 comments on commit fca22fd

Please sign in to comment.