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 | 6900f348235f25336450910c8d71b4ffc3133818 (patch) | |
tree | f7fefb927accd65f44db76df5424fd90e67c255e /FrontEnd/src | |
parent | f8ee7fa8b6c50461b334adb082bfc0bf86e7eb79 (diff) | |
download | timeline-6900f348235f25336450910c8d71b4ffc3133818.tar.gz timeline-6900f348235f25336450910c8d71b4ffc3133818.tar.bz2 timeline-6900f348235f25336450910c8d71b4ffc3133818.zip |
feat: About page use new card effect.
Diffstat (limited to 'FrontEnd/src')
-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> |