mirror of
https://github.com/bakhirev/assayo.git
synced 2025-09-01 18:19:43 +00:00
32 lines
505 B
SCSS
32 lines
505 B
SCSS
@import 'src/styles/variables';
|
|
|
|
.ui_kit_select {
|
|
padding: 0 var(--space-xs) 0 var(--space-l);
|
|
|
|
&_value {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.ui_kit_select_with_buttons {
|
|
&_wrapper {
|
|
position: relative;
|
|
padding: 0 50px;
|
|
text-align: center;
|
|
}
|
|
|
|
&_left {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
&_right {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
display: inline-block;
|
|
}
|
|
}
|