Skip to content

Commit

Permalink
fix: icon background
Browse files Browse the repository at this point in the history
  • Loading branch information
creed-victor committed Oct 28, 2024
1 parent ca66dc1 commit 72fbae7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.assetLogo svg {
@apply mr-2 w-5 h-5;
@apply mr-2 w-5 h-5 bg-gray-80 rounded-full overflow-hidden;
}

.asset {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,7 @@ export const AssetRenderer: FC<AssetRendererProps> = ({
>
{showAssetLogo && logo && (
<div
className={classNames(
styles.assetLogo,
logoClassName,
'rounded-full overflow-hidden bg-gray-80',
)}
className={classNames(styles.assetLogo, logoClassName)}
dangerouslySetInnerHTML={{ __html: logo }}
/>
)}
Expand Down

0 comments on commit 72fbae7

Please sign in to comment.