hensei-web/components/SelectWithSelect/index.scss
Justin Edmund 0860e7d694 Implement SelectWithSelect
A table item with a select on the left and a select on the right
2023-01-06 00:46:34 -08:00

16 lines
218 B
SCSS

.SelectSet {
display: flex;
flex-direction: row;
gap: $unit;
width: 100%;
.SelectTrigger.Left {
flex-grow: 1;
width: 100%;
}
.SelectTrigger.Right {
flex-grow: 0;
min-width: 10rem;
}
}