mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
style empty state
This commit is contained in:
parent
76e14be730
commit
ac156d0ea0
@ -11,6 +11,11 @@
|
||||
font-size: var(--font-size-base);
|
||||
}
|
||||
|
||||
.empty {
|
||||
color: var(--color-secondary);
|
||||
font-weight: var(--font-weight-bold);
|
||||
}
|
||||
|
||||
.small {
|
||||
/* lazy making-conversion-smaller-with-same-markup */
|
||||
transform: scale(0.8);
|
||||
|
@ -50,7 +50,7 @@ export default function Price({
|
||||
return price ? (
|
||||
<div className={styleClasses}>{displayPrice}</div>
|
||||
) : price === '' ? (
|
||||
<div>
|
||||
<div className={styles.empty}>
|
||||
No price found{' '}
|
||||
<Tooltip content="We could not find a pool for this data set, which can have multiple reasons. Is your wallet connected to the correct network?" />
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user