diff --git a/src/status_im/ui/screens/accounts/create/views.cljs b/src/status_im/ui/screens/accounts/create/views.cljs index 6d0a71285f..3c401a1e92 100644 --- a/src/status_im/ui/screens/accounts/create/views.cljs +++ b/src/status_im/ui/screens/accounts/create/views.cljs @@ -72,7 +72,8 @@ [components.common/logo styles/logo]] ^{:key (str "step" step)} [react/view components.styles/flex - [react/view {:style styles/input-container} + [react/view {:style styles/input-container + :important-for-accessibility :no-hide-descendants} [input step error] [react/text {:style styles/input-description} (get-in steps [step :input-description])]] diff --git a/src/status_im/ui/screens/accounts/login/views.cljs b/src/status_im/ui/screens/accounts/login/views.cljs index 78624e3334..548f4f3354 100644 --- a/src/status_im/ui/screens/accounts/login/views.cljs +++ b/src/status_im/ui/screens/accounts/login/views.cljs @@ -59,7 +59,8 @@ [react/view styles/login-view [react/view styles/login-badge-container [account-login-badge photo-path name] - [react/view styles/password-container + [react/view {:style styles/password-container + :important-for-accessibility :no-hide-descendants} [text-input/text-input-with-label {:label (i18n/label :t/password) :placeholder (i18n/label :t/password) diff --git a/src/status_im/ui/screens/accounts/recover/views.cljs b/src/status_im/ui/screens/accounts/recover/views.cljs index c7c5405b4a..5ca80a0691 100644 --- a/src/status_im/ui/screens/accounts/recover/views.cljs +++ b/src/status_im/ui/screens/accounts/recover/views.cljs @@ -37,7 +37,8 @@ (defview password-input [password] (letsubs [error [:get-in [:accounts/recover :password-error]]] - [react/view {:margin-top 10} + [react/view {:style {:margin-top 10} + :important-for-accessibility :no-hide-descendants} [text-input/text-input-with-label {:label (i18n/label :t/password) :placeholder (i18n/label :t/enter-password) diff --git a/src/status_im/ui/screens/wallet/send/views.cljs b/src/status_im/ui/screens/wallet/send/views.cljs index 7f48143362..d3f9994fdc 100644 --- a/src/status_im/ui/screens/wallet/send/views.cljs +++ b/src/status_im/ui/screens/wallet/send/views.cljs @@ -81,7 +81,8 @@ :accessibility-label :signing-phrase-text} signing-phrase]] [react/i18n-text {:style styles/signing-phrase-description :key message-label}] - [react/view styles/password-container + [react/view {:style styles/password-container + :important-for-accessibility :no-hide-descendants} [react/text-input {:auto-focus true :secure-text-entry true