* Adapts styles for CSS modules * Properly sends validity * Reordered errors
16 lines
184 B
SCSS
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;
|
|
}
|
|
}
|