💄 apple standalone page improvements

This commit is contained in:
Manuel Ruwe
2022-10-10 20:46:22 +02:00
committed by Manuel
parent f951bcd750
commit 9aaf5e0dc0
18 changed files with 70 additions and 17 deletions

View File

@@ -1,14 +1,22 @@
import { AppShell, createStyles } from '@mantine/core';
import { Header } from './Header';
import { Header } from './header/Header';
import { Footer } from './Footer';
import Aside from './Aside';
import Navbar from './Navbar';
import { HeaderConfig } from './HeaderConfig';
import { HeaderConfig } from './header/HeaderConfig';
import { Background } from './Background';
import { useConfig } from '../../tools/state';
const useStyles = createStyles((theme) => ({
main: {},
appShell: {
// eslint-disable-next-line no-useless-computed-key
['@media screen and (display-mode: standalone)']: {
'&': {
paddingTop: '88px !important',
},
},
},
}));
export default function Layout({ children, style }: any) {