1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

update download buttons style

This commit is contained in:
Bogdan Fazakas 2022-04-07 16:03:13 +03:00
parent 16eaff62d9
commit bc6af3a839
3 changed files with 7 additions and 3 deletions

View File

@ -33,8 +33,8 @@ function Asset({
</a> </a>
</h3> </h3>
<p className={styles.assetMeta}> <p className={styles.assetMeta}>
<span> {`${symbol} | `}</span> <span className={styles.assetMeta}> {`${symbol} | `}</span>
<code>{did}</code> <code className={styles.assetMeta}>{did}</code>
</p> </p>
</div> </div>
) )

View File

@ -3,6 +3,10 @@
border-bottom-left-radius: var(--border-radius) !important; border-bottom-left-radius: var(--border-radius) !important;
} }
.results li {
list-style-type: none;
}
.help { .help {
margin-top: calc(var(--spacer) / 3); margin-top: calc(var(--spacer) / 3);
} }

View File

@ -56,7 +56,7 @@ export default function Results({
onClick={() => downloadResults(i)} onClick={() => downloadResults(i)}
disabled={isLoading || !isFinished} disabled={isLoading || !isFinished}
> >
{jobResult.filename} {`Download ${jobResult.filename}`}
</Button> </Button>
</ListItem> </ListItem>
) : ( ) : (