mirror of
https://github.com/etkecc/synapse-admin.git
synced 2024-11-21 23:35:22 +03:00
fix footer content overlapping and scrollbar
This commit is contained in:
parent
7feec4ba07
commit
f2f540b429
2 changed files with 14 additions and 1 deletions
|
@ -22,6 +22,11 @@
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.layout {
|
||||||
|
min-height: 90vh !important;
|
||||||
|
height: 90vh;
|
||||||
|
}
|
||||||
|
|
||||||
.loader-container {
|
.loader-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
@ -64,7 +64,15 @@ const AdminMenu = () => (
|
||||||
);
|
);
|
||||||
|
|
||||||
export const AdminLayout = ({ children }) => (
|
export const AdminLayout = ({ children }) => (
|
||||||
<Layout appBar={AdminAppBar} menu={AdminMenu}>
|
<Layout appBar={AdminAppBar} menu={AdminMenu} sx={{
|
||||||
|
['& .RaLayout-appFrame']: {
|
||||||
|
minHeight: '90vh',
|
||||||
|
height: '90vh',
|
||||||
|
},
|
||||||
|
['& .RaLayout-content']: {
|
||||||
|
marginBottom: '3rem',
|
||||||
|
},
|
||||||
|
}}>
|
||||||
{children}
|
{children}
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue