mirror of
https://github.com/umami-software/umami.git
synced 2026-02-15 01:55:36 +01:00
Added Panel component. New color scheme.
This commit is contained in:
parent
a7dad20d8a
commit
5d2c1e27c2
13 changed files with 64 additions and 64 deletions
|
|
@ -30,25 +30,18 @@ export function App({ children }) {
|
|||
}
|
||||
|
||||
return (
|
||||
<Grid
|
||||
height="100vh"
|
||||
width="100%"
|
||||
columns="auto 1fr"
|
||||
rows="auto 1fr"
|
||||
overflow="hidden"
|
||||
backgroundColor="2"
|
||||
>
|
||||
<Grid height="100vh" width="100%" columns="auto 1fr" rows="auto 1fr" overflow="hidden">
|
||||
<Nav gridColumn="1 / 2" gridRow="1 / 3" />
|
||||
<NavBar gridColumn="2 / 3" gridRow="1 / 2" />
|
||||
<Column alignItems="center" overflow="scroll">
|
||||
<Column gridColumn="2 / 3" gridRow="2 / 3" alignItems="center" overflow="auto">
|
||||
<Page>
|
||||
<UpdateNotice user={user} config={config} />
|
||||
{children}
|
||||
{process.env.NODE_ENV === 'production' && !pathname.includes('/share/') && (
|
||||
<Script src={`${process.env.basePath || ''}/telemetry.js`} />
|
||||
)}
|
||||
</Page>
|
||||
</Column>
|
||||
<UpdateNotice user={user} config={config} />
|
||||
</Grid>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue