30 lines
577 B
SCSS
30 lines
577 B
SCSS
@import "variables";
|
|
|
|
vn-item-diary {
|
|
& > vn-vertical {
|
|
display: block;
|
|
}
|
|
vn-horizontal {
|
|
justify-content: center;
|
|
}
|
|
vn-autocomplete > div {
|
|
width: 400px;
|
|
}
|
|
.balanceNegative .balance {
|
|
color: $color-alert;
|
|
}
|
|
.isIn .in {
|
|
color: $color-success;
|
|
font-weight: bold;
|
|
}
|
|
.isToday .date {
|
|
color: white;
|
|
background-color: $color-main;
|
|
}
|
|
.truncate {
|
|
max-width: 250px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
} |