Skip to content

Commit

Permalink
Stake Workout
Browse files Browse the repository at this point in the history
  • Loading branch information
doyledyp committed Sep 28, 2020
1 parent 6aec87c commit 76644ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions src/components/CurrencyLogo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,28 @@ const getTokenLogoURL = (address: string) =>
`https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/${address}/logo.png`

const StyledEthereumLogo = styled.img<{ size: string }>`
width: ${({ size }) => size};
height: ${({ size }) => size};
width: 30px;
height: 30px;
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.075);
border-radius: 24px;
border-radius: 30px;
`

const StyledDYPLogo = styled.img<{ size: string }>`
width: 30px;
height: 30px};
width: 46px;
height: 37px;
border-radius: 30px;
`

const StyledLogo = styled(Logo)<{ size: string }>`
width: ${({ size }) => size};
height: ${({ size }) => size};
border-radius: ${({ size }) => size};
width: 30px;
height: 30px;
border-radius: 30px;
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.075);
`

export default function CurrencyLogo({
currency,
size = '24px',
size = '30px',
style
}: {
currency?: Currency
Expand Down
2 changes: 1 addition & 1 deletion src/components/earn/PoolCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default function PoolCard({ stakingInfo }: { stakingInfo: StakingInfo })

<TopSection>
<DoubleCurrencyLogo currency0={currency0} currency1={currency1} size={24} />
<TYPE.white fontWeight={600} fontSize={24} style={{ marginLeft: '8px' }}>
<TYPE.white fontWeight={600} fontSize={24} style={{ marginLeft: '35px' }}>
{currency0.symbol}-{currency1.symbol}
</TYPE.white>

Expand Down

0 comments on commit 76644ed

Please sign in to comment.