cyp/app/css/mixins.less

31 lines
423 B
Plaintext
Raw Normal View History

2019-04-03 01:19:46 +08:00
.flex-row {
2020-03-09 05:11:46 +08:00
&:not([hidden]) { display: flex; }
2019-04-03 01:19:46 +08:00
flex-direction: row;
align-items: center;
}
.flex-column {
2020-03-09 05:11:46 +08:00
&:not([hidden]) { display: flex; }
2019-04-03 01:19:46 +08:00
flex-direction: column;
}
.long-line {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.multiline {
.flex-row;
h2 { font-weight: normal; }
}
2020-03-09 21:26:39 +08:00
.selectable {
border-left: 4px solid transparent;
&.selected {
border-left-color: var(--primary);
}
}