cyp/app/css/mixins.less

23 lines
274 B
Plaintext
Raw Normal View History

2019-04-03 01:19:46 +08:00
.flex-row {
display: flex;
flex-direction: row;
align-items: center;
}
.flex-column {
display: flex;
flex-direction: column;
}
.long-line {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.multiline {
.flex-row;
h2 { font-weight: normal; }
}