diff options
author | crupest <crupest@outlook.com> | 2020-11-04 16:14:37 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-04 16:14:37 +0800 |
commit | f8ee7fa8b6c50461b334adb082bfc0bf86e7eb79 (patch) | |
tree | a4ca6967c1c1d392ae2fb9cde31a62ad9b01ef52 /FrontEnd/src/app/views | |
parent | fa903e2e2e23761d0a650b657ef78ba4966c9220 (diff) | |
download | timeline-f8ee7fa8b6c50461b334adb082bfc0bf86e7eb79.tar.gz timeline-f8ee7fa8b6c50461b334adb082bfc0bf86e7eb79.tar.bz2 timeline-f8ee7fa8b6c50461b334adb082bfc0bf86e7eb79.zip |
chore: Remove mt-appbar.
Diffstat (limited to 'FrontEnd/src/app/views')
-rw-r--r-- | FrontEnd/src/app/views/about/index.tsx | 2 | ||||
-rw-r--r-- | FrontEnd/src/app/views/login/index.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/app/views/about/index.tsx b/FrontEnd/src/app/views/about/index.tsx index e7771cec..1b77810e 100644 --- a/FrontEnd/src/app/views/about/index.tsx +++ b/FrontEnd/src/app/views/about/index.tsx @@ -73,7 +73,7 @@ const AboutPage: React.FC = () => { const { t } = useTranslation(); return ( - <div className="mt-appbar px-2 mb-4"> + <div className="px-2 mb-4"> <div className="container mt-4 py-3 shadow border border-primary rounded bg-light"> <h4 id="author-info">{t("about.author.title")}</h4> <div> diff --git a/FrontEnd/src/app/views/login/index.tsx b/FrontEnd/src/app/views/login/index.tsx index 61b9a525..c0cd9ca9 100644 --- a/FrontEnd/src/app/views/login/index.tsx +++ b/FrontEnd/src/app/views/login/index.tsx @@ -34,7 +34,7 @@ const LoginPage: React.FC = (_) => { return ( <> <AppBar /> - <p className="mt-appbar">{t("login.alreadyLogin")}</p> + <p>{t("login.alreadyLogin")}</p> </> ); } |