40 lines
659 B
SCSS
40 lines
659 B
SCSS
@import "./variables";
|
|
|
|
vn-item-summary {
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.item-state {
|
|
padding: 6px;
|
|
background-color: $color-main;
|
|
color: $color-font-dark;
|
|
|
|
p {
|
|
font-size: .75rem;
|
|
text-align: center;
|
|
margin: 0;
|
|
|
|
&:first-child {
|
|
text-transform: uppercase;
|
|
line-height: 1;
|
|
}
|
|
&:last-child {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
vn-one {
|
|
padding: 0;
|
|
|
|
&:nth-child(1) {
|
|
border-right: 1px solid white;
|
|
}
|
|
|
|
&:nth-child(2) {
|
|
border-right: 1px solid white;
|
|
}
|
|
}
|
|
}
|