hensei-web/components/common/SelectWithInput/index.module.scss
Justin Edmund 1f26b0afc8 Fix SelectWithInput styles and functionality
* Adapts styles for CSS modules
* Add name to errors
* Properly sends validity
2023-07-02 16:26:05 -07:00

16 lines
184 B
SCSS

.set {
display: flex;
flex-direction: row;
gap: $unit;
width: 100%;
}
.errors {
color: $error;
display: none;
padding: $unit 0;
&.visible {
display: block;
}
}