diff --git a/src/components/PageLayout/Footer/Footer.tsx b/src/components/PageLayout/Footer/Footer.tsx index 97705a10..6d0c037c 100644 --- a/src/components/PageLayout/Footer/Footer.tsx +++ b/src/components/PageLayout/Footer/Footer.tsx @@ -42,7 +42,7 @@ export const Footer: FC = () => { color: 'white', }} > - + {menuItemsIsLoading && } diff --git a/src/components/PageLayout/PageLayout.tsx b/src/components/PageLayout/PageLayout.tsx index e1bb16a8..9400453e 100644 --- a/src/components/PageLayout/PageLayout.tsx +++ b/src/components/PageLayout/PageLayout.tsx @@ -38,13 +38,13 @@ export const PageLayout: FC = ({contentWidth = 2, title = '', c - + - - + + - + {children} diff --git a/src/components/PageLayout/TopGrid/TopGrid.tsx b/src/components/PageLayout/TopGrid/TopGrid.tsx index aaa5e0fd..f2e8896c 100644 --- a/src/components/PageLayout/TopGrid/TopGrid.tsx +++ b/src/components/PageLayout/TopGrid/TopGrid.tsx @@ -31,15 +31,15 @@ export const TopGrid: FC = () => { return ( - + {/* first row */} - + - - + + { {/* second row */} - - + + {pageTitle} {semesterPickerPage && ( diff --git a/src/theme.ts b/src/theme.ts index c55b6966..bd212c74 100644 --- a/src/theme.ts +++ b/src/theme.ts @@ -59,9 +59,9 @@ export const font = Poppins({ const _theme = createTheme({ breakpoints: { values: { - xs: 0, // defualt - sm: 640, // defualt = 640 - md: 900, // defualt = 900 + xs: 0, // default + sm: 640, // default = 640 + md: 900, // default = 900 lg: 1366, // changed to HD, default = 1200 xl: 1921, // changed to fullHD, default = 1536 }, @@ -188,7 +188,7 @@ const pxToRem = _theme.typography.pxToRem const sm = _theme.breakpoints.up('sm') // 640px const md = _theme.breakpoints.up('md') // 900px const lg = _theme.breakpoints.up('lg') // 1366px -const xl = _theme.breakpoints.up('xl') // 1920px +const xl = _theme.breakpoints.up('xl') // 1921px // manual font sizes export const theme: Theme = {