fix select bridge
This commit is contained in:
@@ -147,11 +147,14 @@
|
|||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tokLogo img {
|
.tokLogoImg {
|
||||||
width: 28px;
|
width: 100%;
|
||||||
height: 28px;
|
height: 100%;
|
||||||
|
border-radius: 50%;
|
||||||
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
.arb {
|
.arb {
|
||||||
|
|||||||
@@ -118,8 +118,8 @@ function TokenTableView({ rows, isLoading, fallbackChain = 'ETH', groupByChain =
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div className={styles.tokId}>
|
<div className={styles.tokId}>
|
||||||
<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={''} /> : t.ticker[0]}
|
{t.logo ? <img src={t.logo} alt={t.ticker} className={styles.tokLogoImg} /> : t.ticker[0]}
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.balCol}>
|
<div className={styles.balCol}>
|
||||||
<b className={styles.cardTicker}>{t.ticker}</b>
|
<b className={styles.cardTicker}>{t.ticker}</b>
|
||||||
@@ -172,9 +172,9 @@ function TokenTableView({ rows, isLoading, fallbackChain = 'ETH', groupByChain =
|
|||||||
>
|
>
|
||||||
★
|
★
|
||||||
</button>
|
</button>
|
||||||
<div className={styles.tokLogo} style={{ background: t.color }}>
|
<div className={styles.tokLogo} style={{ background: t.logo ? 'transparent' : t.color }}>
|
||||||
{t.logo
|
{t.logo
|
||||||
? <img src={t.logo} alt={t.ticker} className={''} />
|
? <img src={t.logo} alt={t.ticker} className={styles.tokLogoImg} />
|
||||||
: t.ticker[0]}
|
: t.ticker[0]}
|
||||||
</div>
|
</div>
|
||||||
<div className={styles.cardInfo}>
|
<div className={styles.cardInfo}>
|
||||||
|
|||||||
Reference in New Issue
Block a user