1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-17 01:43:23 +02:00
market/src/components/Asset/AssetContent/MetaFull.module.css

21 lines
416 B
CSS

.metaFull {
margin-top: var(--spacer);
display: grid;
gap: var(--spacer);
grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}
.metaFull code {
/* magic number cause the code font has a bigger visual weight */
font-size: 0.8rem;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
padding: 0;
}
/* debug output */
.metaFull + div {
margin-top: var(--spacer);
}