mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
17 lines
365 B
CSS
17 lines
365 B
CSS
.metaFull {
|
|
margin-top: calc(var(--spacer) * 2);
|
|
font-size: var(--font-size-small);
|
|
display: grid;
|
|
gap: var(--spacer);
|
|
grid-template-columns: 1fr 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;
|
|
}
|