30 lines
423 B
Text
30 lines
423 B
Text
.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);
|
|
}
|
|
}
|