1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00
market/src/components/organisms/AssetContent/MetaFull.module.css

16 lines
367 B
CSS
Raw Normal View History

2020-05-07 08:03:30 +02:00
.metaFull {
margin-top: var(--spacer);
font-size: var(--font-size-small);
padding: var(--spacer);
border-radius: var(--border-radius);
2020-07-07 23:00:16 +02:00
background: var(--brand-grey-dimmed);
2020-05-07 08:03:30 +02:00
display: grid;
gap: var(--spacer);
grid-template-columns: 1fr 1fr;
}
.metaFull code {
/* magic number cause the code font has a bigger visual weight */
2020-07-07 23:00:16 +02:00
font-size: 0.8rem;
2020-05-07 08:03:30 +02:00
}