diff options
author | crupest <crupest@outlook.com> | 2021-07-02 21:58:53 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-07-02 21:58:53 +0800 |
commit | 8443f77435a75048587b74615be62f0fefb29bf4 (patch) | |
tree | bd5ca0f661e383b4867d1b99d7825a7a8a13221e | |
parent | 8f9096bace34658b63f9913fdd40e90953d11bfb (diff) | |
download | timeline-8443f77435a75048587b74615be62f0fefb29bf4.tar.gz timeline-8443f77435a75048587b74615be62f0fefb29bf4.tar.bz2 timeline-8443f77435a75048587b74615be62f0fefb29bf4.zip |
fix: Fix a UI bug in login page.
-rw-r--r-- | FrontEnd/src/views/login/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/views/login/index.tsx b/FrontEnd/src/views/login/index.tsx index ed696437..a3f0ccd7 100644 --- a/FrontEnd/src/views/login/index.tsx +++ b/FrontEnd/src/views/login/index.tsx @@ -134,7 +134,7 @@ const LoginPage: React.FC = (_) => { {t("user.rememberMe")} </label> </div> - {error ? <p className="text-danger">{t(error)}</p> : null} + {error ? <p className="cru-color-danger">{t(error)}</p> : null} <div className="cru-text-end"> <LoadingButton loading={process} |