mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
25 lines
388 B
CSS
25 lines
388 B
CSS
.selectedValue {
|
|
composes: selectedValue from '~./EnhancedSelectInputSelectedValue.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.valueText {
|
|
@add-mixin truncate;
|
|
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.hintText {
|
|
@add-mixin truncate;
|
|
|
|
flex: 1 10 0;
|
|
margin-left: 15px;
|
|
color: $gray;
|
|
text-align: right;
|
|
font-size: $smallFontSize;
|
|
}
|