Skip to content

Commit

Permalink
fix: chain icon clipping (#8788)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xApotheosis authored Feb 11, 2025
1 parent 8cde7b9 commit 25c9346
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const AssetMenuButton = ({
isLoading={isLoading}
{...buttonProps}
>
<Flex alignItems='center' gap={2} width='100%' overflow='hidden'>
<Flex alignItems='center' gap={2} width='100%' overflow='visible' mx={1}>
{icon}
<Text as='span' textOverflow='ellipsis' overflow='hidden'>
{asset?.symbol}
Expand Down
2 changes: 1 addition & 1 deletion src/components/TradeAssetSearch/TradeAssetSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const assetButtonProps = {
pr: 3,
py: 1.5,
size: 'sm',
borderRadius: 'full',
borderRadius: '2xl',
height: 'auto',
}

Expand Down

0 comments on commit 25c9346

Please sign in to comment.