Fix layout

This commit is contained in:
ajnart
2022-12-20 15:43:26 +09:00
parent 9996ff1529
commit 5f1bddf864

View File

@@ -1,9 +1,8 @@
import { AppShell, createStyles } from '@mantine/core'; import { AppShell, createStyles } from '@mantine/core';
import { useConfigContext } from '../../config/provider'; import { useConfigContext } from '../../config/provider';
import { Background } from './Background'; import { Background } from './Background';
import { Footer } from './Footer'; import { Header } from './header/Header';
import { Header } from './Header/Header'; import { Head } from './header/Meta/Head';
import { Head } from './Header/Meta/Head';
const useStyles = createStyles(() => ({})); const useStyles = createStyles(() => ({}));
@@ -15,7 +14,6 @@ export default function Layout({ children }: any) {
<AppShell <AppShell
fixed={false} fixed={false}
header={<Header />} header={<Header />}
footer={<Footer links={[]} />}
styles={{ styles={{
main: { main: {
minHeight: 'calc(100vh - var(--mantine-header-height))', minHeight: 'calc(100vh - var(--mantine-header-height))',