diff --git a/client/modules/User/components/LoginForm.jsx b/client/modules/User/components/LoginForm.jsx
index 8efcfa22c7..ac6664cb83 100644
--- a/client/modules/User/components/LoginForm.jsx
+++ b/client/modules/User/components/LoginForm.jsx
@@ -55,25 +55,27 @@ function LoginForm() {
-
-
+
+
+
+
{field.meta.touched && field.meta.error && (
{field.meta.error}
)}
diff --git a/client/modules/User/components/SignupForm.jsx b/client/modules/User/components/SignupForm.jsx
index ab780f1717..6201f66295 100644
--- a/client/modules/User/components/SignupForm.jsx
+++ b/client/modules/User/components/SignupForm.jsx
@@ -109,25 +109,27 @@ function SignupForm() {
-
-
+
+
+
+
{field.meta.touched && field.meta.error && (
{field.meta.error}
)}
@@ -142,25 +144,27 @@ function SignupForm() {
-
-
+
+
+
+
{field.meta.touched && field.meta.error && (
{field.meta.error}
)}
diff --git a/client/styles/components/_forms.scss b/client/styles/components/_forms.scss
index 0d9c80955c..d1237935cc 100644
--- a/client/styles/components/_forms.scss
+++ b/client/styles/components/_forms.scss
@@ -58,7 +58,7 @@
}
.form__input {
- min-width: #{math.div(355, $base-font-size)}rem;
+ min-width: #{math.div(312, $base-font-size)}rem;
width: 100%;
height: #{math.div(40, $base-font-size)}rem;
font-size: #{math.div(16, $base-font-size)}rem;
@@ -73,12 +73,16 @@
}
}
+.form__field__password {
+ position: relative;
+}
+
.form__eye__icon {
font-size: 28px;
- position: relative;
- top: 7px;
- right: -355px;
- margin-left: -40px;
+ position: absolute;
+ right: 0px;
+ top: 4px;
+ vertical-align: middle;
}