From 7743172a8ca8e1f179dd5e8bd0be766505d8451c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20L=C3=A1szl=C3=B3?= <rlacko99@gmail.com> Date: Mon, 1 Feb 2021 21:28:48 +0100 Subject: [PATCH] better font size for contact --- src/components/Footer.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 3c869c9..15df3a1 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -19,7 +19,7 @@ const useMobileStyles = makeStyles((theme) => ({ }, contactText: { color: theme.palette.primary.contrastText, - fontSize: '1.8rem', + fontSize: '1.7rem', fontWeight: 500, marginBottom: theme.spacing(1), marginTop: theme.spacing(1), @@ -59,6 +59,9 @@ const useDesktopStyles = makeStyles((theme) => ({ paddingLeft: theme.spacing(2), paddingRight: theme.spacing(2), }, + contactText: { + fontSize: '1.8rem', + }, devteam: { fontSize: '1.7rem', paddingLeft: theme.spacing(1), @@ -179,7 +182,7 @@ const Footer: React.FC = () => { alignItems="flex-start" className={dClasses.contact} > - <Typography align="center" className={mClasses.contactText}> + <Typography align="center" className={`${mClasses.contactText} ${dClasses.contactText}`}> Kapcsolat </Typography> <Box display="flex" flexDirection="column" alignItems="flex-start"> -- GitLab