1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-16 01:13:24 +02:00

style empty state

This commit is contained in:
Matthias Kretschmann 2020-08-07 18:20:08 +02:00
parent 76e14be730
commit ac156d0ea0
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 6 additions and 1 deletions

View File

@ -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);

View File

@ -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>