fix select bridge

This commit is contained in:
2026-07-02 19:50:46 +03:00
parent ccd05ffb97
commit 8b3dbb4846
2 changed files with 10 additions and 7 deletions

View File

@@ -147,11 +147,14 @@
font-size: 15px;
color: #fff;
flex-shrink: 0;
overflow: hidden;
}
.tokLogo img {
width: 28px;
height: 28px;
.tokLogoImg {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.arb {

View File

@@ -118,8 +118,8 @@ function TokenTableView({ rows, isLoading, fallbackChain = 'ETH', groupByChain =
</td>
<td>
<div className={styles.tokId}>
<div className={styles.tokLogo} style={{ background: t.color }}>
{t.logo ? <img src={t.logo} alt={t.ticker} className={''} /> : t.ticker[0]}
<div className={styles.tokLogo} style={{ background: t.logo ? 'transparent' : t.color }}>
{t.logo ? <img src={t.logo} alt={t.ticker} className={styles.tokLogoImg} /> : t.ticker[0]}
</div>
<div className={styles.balCol}>
<b className={styles.cardTicker}>{t.ticker}</b>
@@ -172,9 +172,9 @@ function TokenTableView({ rows, isLoading, fallbackChain = 'ETH', groupByChain =
>
</button>
<div className={styles.tokLogo} style={{ background: t.color }}>
<div className={styles.tokLogo} style={{ background: t.logo ? 'transparent' : t.color }}>
{t.logo
? <img src={t.logo} alt={t.ticker} className={''} />
? <img src={t.logo} alt={t.ticker} className={styles.tokLogoImg} />
: t.ticker[0]}
</div>
<div className={styles.cardInfo}>