hensei-web/components/SelectWithInput/index.scss
Justin Edmund 0f30c73964 Implement SelectWithInput
We keep making this pattern so lets standardize it
2023-01-05 20:46:50 -08:00

30 lines
423 B
SCSS

.SelectWithItem {
.InputSet {
display: flex;
flex-direction: row;
gap: $unit;
width: 100%;
.SelectTrigger {
flex-grow: 1;
width: 100%;
}
.Input {
// min-width: $unit * 12;
flex-grow: 0;
text-align: right;
width: inherit;
}
}
.errors {
color: $error;
display: none;
padding: $unit 0;
&.visible {
display: block;
}
}
}