diff options
author | crupest <crupest@outlook.com> | 2020-11-04 16:15:55 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-04 16:15:55 +0800 |
commit | dfb40c99c2c6047700da20b5d0d7a32026fba273 (patch) | |
tree | be6486eb1901d8666ca13e0b16e405dfaccce635 | |
parent | f9f1af61fdd5bf81e9cbe99d782ef3e0912cfdee (diff) | |
download | timeline-dfb40c99c2c6047700da20b5d0d7a32026fba273.tar.gz timeline-dfb40c99c2c6047700da20b5d0d7a32026fba273.tar.bz2 timeline-dfb40c99c2c6047700da20b5d0d7a32026fba273.zip |
feat: About page use new card effect.
-rw-r--r-- | FrontEnd/src/app/views/about/index.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FrontEnd/src/app/views/about/index.tsx b/FrontEnd/src/app/views/about/index.tsx index 1b77810e..d63b6996 100644 --- a/FrontEnd/src/app/views/about/index.tsx +++ b/FrontEnd/src/app/views/about/index.tsx @@ -74,7 +74,7 @@ const AboutPage: React.FC = () => { return ( <div className="px-2 mb-4"> - <div className="container mt-4 py-3 shadow border border-primary rounded bg-light"> + <div className="container mt-4 py-3 cru-card"> <h4 id="author-info">{t("about.author.title")}</h4> <div> <div className="d-flex"> @@ -109,7 +109,7 @@ const AboutPage: React.FC = () => { </p> </div> </div> - <div className="container mt-4 py-3 shadow border border-primary rounded bg-light"> + <div className="container mt-4 py-3 cru-card"> <h4>{t("about.site.title")}</h4> <p> <Trans i18nKey="about.site.content"> @@ -127,7 +127,7 @@ const AboutPage: React.FC = () => { </a> </p> </div> - <div className="container mt-4 py-3 shadow border border-primary rounded bg-light"> + <div className="container mt-4 py-3 cru-card"> <h4>{t("about.credits.title")}</h4> <p>{t("about.credits.content")}</p> <p>{t("about.credits.frontend")}</p> |