Revert "Fix appearance of Create Password and Change Password forms (#21544)"

This reverts commit cf72bcbe42.
This commit is contained in:
Sean Hagstrom 2024-11-04 10:36:09 -08:00 committed by GitHub
parent cf72bcbe42
commit ec2c14b5f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 6 deletions

View File

@ -40,7 +40,7 @@
[quo/info-message
{:status status
:size :default
:icon (if (= status :success) :i/check-circle :i/info)
:icon (if (= status :success) :i/positive-state :i/info)
:color (when (= status :default)
colors/white-70-blur)}
text])]])

View File

@ -27,7 +27,7 @@
(cond-> {:status status
:size :default}
(not= :success status) (assoc :icon :i/info)
(= :success status) (assoc :icon :i/check-circle)
(= :success status) (assoc :icon :i/positive-state)
(= :default status) (assoc :color colors/white-70-blur))
text])]])
@ -142,7 +142,6 @@
[rn/view {:style style/disclaimer-container}
[quo/disclaimer
{:blur? true
:customization-color customization-color
:on-change on-disclaimer-change
:checked? disclaimer-accepted?}
(i18n/label :t/password-creation-disclaimer)]])