mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
21 lines
416 B
CSS
21 lines
416 B
CSS
.metaFull {
|
|
margin-top: var(--spacer);
|
|
display: grid;
|
|
gap: var(--spacer);
|
|
grid-template-columns: repeat(auto-fit, minmax(10rem, 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);
|
|
}
|