32 lines
642 B
SCSS
32 lines
642 B
SCSS
@import "../Theme/Theme.scss";
|
|
|
|
$line-min-height: 24px;
|
|
|
|
div.combo-input {
|
|
|
|
div.value-view {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: $line-min-height;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 8px;
|
|
white-space: nowrap;
|
|
word-break: keep-all;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
|
|
span {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
div.list-button {
|
|
width: $line-min-height;
|
|
height: $line-min-height;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
} |