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

17 lines
355 B
CSS
Raw Normal View History

2020-05-07 08:03:30 +02:00
.metaFull {
2020-10-24 17:01:04 +02:00
margin-top: var(--spacer);
2020-05-07 08:03:30 +02:00
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 */
2020-07-07 23:00:16 +02:00
font-size: 0.8rem;
2020-07-08 00:06:48 +02:00
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-all;
padding: 0;
2020-05-07 08:03:30 +02:00
}