Skip to content

Commit

Permalink
push (#291)
Browse files Browse the repository at this point in the history
Co-authored-by: Den <36603049+dhriaznov@users.noreply.github.com>
  • Loading branch information
terencehh and dhriaznov committed May 27, 2024
1 parent a51c1f6 commit 78ad0ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/tokenImage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ const TickerIconContainer = styled.div<{ size?: number; round?: boolean }>((prop
height: props.size ?? DEFAULT_SIZE,
width: props.size ?? DEFAULT_SIZE,
borderRadius: '50%',
backgroundColor: props.theme.colors.white_400,
backgroundColor: props.theme.colors.white_850,
}));

const TickerIconText = styled.h1((props) => ({
...props.theme.typography.body_bold_m,
color: props.theme.colors.elevation0,
color: props.theme.colors.white_0,
textAlign: 'center',
wordBreak: 'break-all',
fontSize: 11,
Expand All @@ -55,7 +55,7 @@ const ProtocolIcon = styled.div<{ isSquare?: boolean }>((props) => ({
position: 'absolute',
right: props.isSquare ? -9 : -11,
bottom: -2,
backgroundColor: props.theme.colors.elevation1,
backgroundColor: props.theme.colors.elevation0,
padding: 2,
}));

Expand Down

0 comments on commit 78ad0ed

Please sign in to comment.