diff --git a/src/components/organisms/Footer/Footer.tsx b/src/components/organisms/Footer/Footer.tsx index 47cb697..8bfca11 100644 --- a/src/components/organisms/Footer/Footer.tsx +++ b/src/components/organisms/Footer/Footer.tsx @@ -104,7 +104,7 @@ export const Footer = React.forwardRef( {tagline && ( {tagline} @@ -120,7 +120,13 @@ export const Footer = React.forwardRef( {phone} @@ -131,7 +137,15 @@ export const Footer = React.forwardRef( Email - + {email} @@ -181,6 +195,9 @@ export const Footer = React.forwardRef( color: 'var(--fa-color-brand-200)', fontSize: '0.875rem', fontWeight: 500, + display: 'inline-flex', + alignItems: 'center', + minHeight: 44, '&:hover': { color: 'var(--fa-color-white)' }, }} > @@ -228,6 +245,9 @@ export const Footer = React.forwardRef( color: 'var(--fa-color-brand-400)', fontSize: '0.75rem', fontWeight: 500, + display: 'inline-flex', + alignItems: 'center', + minHeight: 44, '&:hover': { color: 'var(--fa-color-white)' }, }} > diff --git a/src/components/organisms/Navigation/Navigation.tsx b/src/components/organisms/Navigation/Navigation.tsx index 0f6c50e..ab4aa95 100644 --- a/src/components/organisms/Navigation/Navigation.tsx +++ b/src/components/organisms/Navigation/Navigation.tsx @@ -110,6 +110,7 @@ export const Navigation = React.forwardRef( onClick={handleDrawerToggle} size="medium" edge="start" + sx={{ minWidth: 44, minHeight: 44 }} > @@ -224,6 +225,7 @@ export const Navigation = React.forwardRef( sx={{ py: 1.5, px: 3, + minHeight: 44, '&:hover': { bgcolor: 'var(--fa-color-brand-100)', },