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:
parent
5d49400463
commit
931a5e4e9f
@ -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);
|
||||||
|
}
|
||||||
|
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user