You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
388 B
25 lines
388 B
5 years ago
|
.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;
|
||
|
}
|