We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f8a735 commit 0498ff0Copy full SHA for 0498ff0
src/lib/components/FormInput/FormInput.js
@@ -162,6 +162,8 @@ const FormInput = React.forwardRef(
162
const validateField = (value) => {
163
let valueToValidate = isNil(value) ? '' : String(value)
164
165
+ if (!valueToValidate && !required) return
166
+
167
let validationError = null
168
169
if (!isEmpty(validationRules)) {
src/lib/components/Wizard/WizardSteps/WizardSteps.scss
@@ -5,7 +5,7 @@
5
.wizard-steps {
6
background-color: $white;
7
min-width: 260px;
8
- margin-right: 1rem;
+ margin-right: 2rem;
9
10
&__indicator {
11
display: inline-flex;
@@ -18,7 +18,7 @@
18
height: 36px;
19
}
20
21
- &__item:not(:last-child) {
+ & > *:not(:last-child) {
22
margin-bottom: 10px;
23
24
0 commit comments