28 lines
321 B
CSS
28 lines
321 B
CSS
|
.delayProfiles {
|
||
|
user-select: none;
|
||
|
}
|
||
|
|
||
|
.delayProfilesHeader {
|
||
|
display: flex;
|
||
|
margin-bottom: 10px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.column {
|
||
|
flex: 0 0 200px;
|
||
|
}
|
||
|
|
||
|
.tags {
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
|
||
|
.addDelayProfile {
|
||
|
display: flex;
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
.addButton {
|
||
|
width: $dragHandleWidth;
|
||
|
text-align: center;
|
||
|
}
|