mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 09:44:53 +01:00
cleanup
This commit is contained in:
parent
51ab425c35
commit
a629112ebb
@ -1,15 +1,3 @@
|
|||||||
.tokeninfo {
|
|
||||||
margin-top: calc(var(--spacer) / 1.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.tokens {
|
|
||||||
composes: tokens from './index.module.css';
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
composes: title from './index.module.css';
|
|
||||||
}
|
|
||||||
|
|
||||||
.totalLiquidity {
|
.totalLiquidity {
|
||||||
composes: totalLiquidity from './index.module.css';
|
composes: totalLiquidity from './index.module.css';
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
.title {
|
.title {
|
||||||
font-size: var(--font-size-base);
|
font-size: var(--font-size-base);
|
||||||
margin-bottom: calc(var(--spacer) / 3);
|
margin-bottom: calc(var(--spacer) / 3);
|
||||||
|
color: var(--color-secondary);
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight {
|
.highlight {
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
font-weight: var(--font-weight-base) !important;
|
font-weight: var(--font-weight-base) !important;
|
||||||
font-size: var(--font-size-small);
|
font-size: var(--font-size-small);
|
||||||
padding-left: var(--font-size-base);
|
padding-left: var(--font-size-base);
|
||||||
min-height: 24px;
|
padding-top: calc(var(--spacer) / 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
.totalLiquidity strong {
|
.totalLiquidity strong {
|
||||||
|
@ -163,10 +163,12 @@ export default function Pool({ ddo }: { ddo: DDO }): ReactElement {
|
|||||||
<Token symbol="pool shares" balance={poolTokens} noIcon />
|
<Token symbol="pool shares" balance={poolTokens} noIcon />
|
||||||
<Token symbol="% of pool" balance={poolShare} noIcon />
|
<Token symbol="% of pool" balance={poolShare} noIcon />
|
||||||
</div>
|
</div>
|
||||||
|
{totalUserLiquidityInOcean > 0 && (
|
||||||
<Conversion
|
<Conversion
|
||||||
price={`${totalUserLiquidityInOcean}`}
|
price={`${totalUserLiquidityInOcean}`}
|
||||||
className={styles.totalLiquidity}
|
className={styles.totalLiquidity}
|
||||||
/>
|
/>
|
||||||
|
)}
|
||||||
</TokenList>
|
</TokenList>
|
||||||
|
|
||||||
<PoolStatistics
|
<PoolStatistics
|
||||||
|
Loading…
Reference in New Issue
Block a user