diff --git a/src/frontend/src/features/rooms/components/Join.tsx b/src/frontend/src/features/rooms/components/Join.tsx index 310ac8d6..e52bf610 100644 --- a/src/frontend/src/features/rooms/components/Join.tsx +++ b/src/frontend/src/features/rooms/components/Join.tsx @@ -13,7 +13,7 @@ export const Join = ({ const { user } = useUser() return ( - + { const { t } = useTranslation('rooms') const [, setLocation] = useLocation() return ( - +
{t('feedback.heading')} diff --git a/src/frontend/src/layout/Footer.tsx b/src/frontend/src/layout/Footer.tsx index 25c61aac..95d128ec 100644 --- a/src/frontend/src/layout/Footer.tsx +++ b/src/frontend/src/layout/Footer.tsx @@ -126,6 +126,7 @@ export const Footer = () => { className={css({ borderTop: '2px solid rgb(0 0 145)', paddingY: '2rem', + marginTop: { base: '50px', sm: '100px' }, })} > @@ -145,7 +146,7 @@ export const Footer = () => { height: '80px', backgroundColor: 'rgb(77 77 77)', width: '1px', - display: { base: 'none', xs: 'block' }, + display: { base: 'none', sm: 'block' }, })} />

{ display: 'none', fontWeight: '700', fontFamily: 'Marianne', - xs: { - display: 'block', - fontSize: '0.75rem', - lineHeight: '1rem', - }, - xsm: { + sm: { display: 'block', fontSize: '1rem', lineHeight: '1.5rem', diff --git a/src/frontend/src/layout/Layout.tsx b/src/frontend/src/layout/Layout.tsx index e8274b18..8fd51920 100644 --- a/src/frontend/src/layout/Layout.tsx +++ b/src/frontend/src/layout/Layout.tsx @@ -22,13 +22,15 @@ export const Layout = ({ children }: { children: ReactNode }) => { <>

{showHeader &&
}