🐛 Disable new ui in auth pages

This commit is contained in:
alonso.torres 2023-11-21 16:33:45 +01:00
parent 9773eeb632
commit f00f33ad6d

View file

@ -11,6 +11,7 @@
[app.main.ui.auth.recovery :refer [recovery-page]]
[app.main.ui.auth.recovery-request :refer [recovery-request-page]]
[app.main.ui.auth.register :refer [register-page register-success-page register-validate-page]]
[app.main.ui.context :as ctx]
[app.main.ui.icons :as i]
[app.util.dom :as dom]
[app.util.i18n :as i18n :refer [tr]]
@ -41,6 +42,8 @@
(mf/use-effect
#(dom/set-html-title (tr "title.default")))
;; FIXME: Temporary disabled new css system until we redesign the login with the new styles
[:& (mf/provider ctx/new-css-system) {:value false}
[:main.auth
[:section.auth-sidebar
[:a.logo {:href "#/"}
@ -68,5 +71,5 @@
:auth-recovery
[:& recovery-page {:params params}])
[:& terms-login {}]]]))
[:& terms-login {}]]]]))