From 8a8ff2ee5a5d96711e1c45799811378b97abf579 Mon Sep 17 00:00:00 2001 From: Xingan Zhao <2081098605@qq.com> Date: Sat, 28 Sep 2024 11:12:40 +0800 Subject: [PATCH] fix --- src/components/Footer.tsx | 12 ++++++------ src/containers/App/App.css | 4 ++++ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index e73064c..7138c1d 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -42,10 +42,10 @@ export function Footer() { <div className="row bg-wine-red footer-container"> <div> <p className="mb-0"> - <small className="footer-container"> - © 2024 - Content on this site is licensed under a{" "} + <small className="footer-container small-font"> + © 2024 - Content on this site is licensed under a {" "} <a - className="subfoot" + className="subfoot small-font" href="https://creativecommons.org/licenses/by/4.0/" rel="license" > @@ -55,9 +55,9 @@ export function Footer() { </small> </p> <p> - <small className="footer-container"> - The repository used to create this website is available at{" "} - <a href={`https://gitlab.igem.org/${teamYear}/${teamSlug}`}> + <small className="footer-container small-font"> + The repository used to create this website is available at {" "} + <a href={`https://gitlab.igem.org/${teamYear}/${teamSlug}`} className="small-font"> gitlab.igem.org/{teamYear}/{teamSlug} </a> . diff --git a/src/containers/App/App.css b/src/containers/App/App.css index 56c9735..5a1237b 100644 --- a/src/containers/App/App.css +++ b/src/containers/App/App.css @@ -864,4 +864,8 @@ span.formula_line::-webkit-scrollbar-track { flex-direction: column; align-items: center; justify-content: center; +} + +.small-font { + font-size: small; } \ No newline at end of file -- GitLab