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

adding padding to AvailableNetworks component

This commit is contained in:
Jamie Hewitt 2022-04-13 14:34:47 +03:00
parent 5d49400463
commit 931a5e4e9f
2 changed files with 5 additions and 2 deletions

View File

@ -10,3 +10,6 @@
margin-top: calc(var(--spacer) / 2); margin-top: calc(var(--spacer) / 2);
color: var(--color-secondary); color: var(--color-secondary);
} }
.content {
padding: calc(var(--spacer) / 2);
}

View File

@ -32,7 +32,7 @@ export default function AvailableNetworks(): ReactElement {
)) ))
return ( return (
<> <div className={styles.content}>
Assets are published to the network your wallet is conected to. These Assets are published to the network your wallet is conected to. These
networks are currently supported: networks are currently supported:
{networkCategories.map( {networkCategories.map(
@ -46,6 +46,6 @@ export default function AvailableNetworks(): ReactElement {
</> </>
) )
)} )}
</> </div>
) )
} }