28 lines
470 B
SCSS
28 lines
470 B
SCSS
@import "variables";
|
|
|
|
|
|
vn-entry-buy-index vn-card {
|
|
max-width: $width-xl;
|
|
|
|
.dark-row {
|
|
background-color: lighten($color-marginal, 10%);
|
|
}
|
|
|
|
tbody tr:nth-child(1) {
|
|
border-top: 1px solid $color-marginal;
|
|
}
|
|
|
|
tbody{
|
|
border-bottom: 1px solid $color-marginal;
|
|
}
|
|
|
|
tbody tr:nth-child(3) {
|
|
height: inherit
|
|
}
|
|
|
|
tr {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
$color-font-link-medium: lighten($color-font-link, 20%) |