💄 Styling and responsiveness

Co-authored-by: Walkx <walkxnl@gmail.com>
This commit is contained in:
Aj - Thomas
2022-05-15 22:55:02 +02:00
committed by ajnart
parent 4045628166
commit c5178ee288
6 changed files with 45 additions and 69 deletions

View File

@@ -6,9 +6,6 @@ import Navbar from './Navbar';
const useStyles = createStyles((theme) => ({
main: {
[theme.fn.largerThan('md')]: {
maxWidth: 1500,
},
},
}));
@@ -21,7 +18,6 @@ export default function Layout({ children, style }: any) {
header={<Header links={[]} />}
footer={<Footer links={[]} />}
>
<Center>
<main
className={cx(classes.main)}
style={{
@@ -30,7 +26,6 @@ export default function Layout({ children, style }: any) {
>
{children}
</main>
</Center>
</AppShell>
);
}