diff options
Diffstat (limited to 'FrontEnd/src/views/about/index.tsx')
-rw-r--r-- | FrontEnd/src/views/about/index.tsx | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/FrontEnd/src/views/about/index.tsx b/FrontEnd/src/views/about/index.tsx index 796d1d23..c7c225b8 100644 --- a/FrontEnd/src/views/about/index.tsx +++ b/FrontEnd/src/views/about/index.tsx @@ -65,21 +65,19 @@ const AboutPage: React.FC = () => { <Card className="container mt-4 py-3"> <h4 id="author-info">{t("about.author.title")}</h4> <div> - <div className="d-flex"> + <div className="d-block"> <img src={authorAvatarUrl} - className="align-self-start cru-avatar large cru-round" + className="cru-avatar large cru-round cru-float-left" /> - <div> - <p> - <small>{t("about.author.name")}</small> - <span className="cru-color-primary">crupest</span> - </p> - <p> - <small>{t("about.author.introduction")}</small> - {t("about.author.introductionContent")} - </p> - </div> + <p> + <small>{t("about.author.name")}</small> + <span className="cru-color-primary">crupest</span> + </p> + <p> + <small>{t("about.author.introduction")}</small> + {t("about.author.introductionContent")} + </p> </div> <p> <small>{t("about.author.links")}</small> |