mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
42 lines
696 B
CSS
42 lines
696 B
CSS
.title {
|
|
composes: title from './MetaItem.module.css';
|
|
margin-top: var(--spacer);
|
|
margin-bottom: calc(var(--spacer) / 2);
|
|
}
|
|
|
|
.history {
|
|
font-size: var(--font-size-small);
|
|
padding-left: 1.25rem;
|
|
}
|
|
|
|
.item {
|
|
position: relative;
|
|
display: block;
|
|
margin-bottom: calc(var(--spacer) / 4);
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.item::before {
|
|
content: '▪';
|
|
position: absolute;
|
|
top: -1px;
|
|
left: -1.25rem;
|
|
color: var(--color-secondary);
|
|
user-select: none;
|
|
}
|
|
|
|
.item::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: -1rem;
|
|
top: 62%;
|
|
display: block;
|
|
width: 1px;
|
|
height: 110%;
|
|
background-color: var(--color-secondary);
|
|
}
|
|
|
|
.item:last-child::after {
|
|
display: none;
|
|
}
|