cyp/app/css/mixins.less
2020-03-09 14:26:39 +01:00

31 lines
423 B
Plaintext

.flex-row {
&:not([hidden]) { display: flex; }
flex-direction: row;
align-items: center;
}
.flex-column {
&:not([hidden]) { display: flex; }
flex-direction: column;
}
.long-line {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.multiline {
.flex-row;
h2 { font-weight: normal; }
}
.selectable {
border-left: 4px solid transparent;
&.selected {
border-left-color: var(--primary);
}
}