Browse Source

increase footer height

master
jeffvli 3 years ago
parent
commit
677e2b9d31
  1. 9
      src/components/layout/Sidebar.tsx
  2. 4
      src/components/layout/styled.tsx

9
src/components/layout/Sidebar.tsx

@ -9,14 +9,7 @@ const Sidebar = ({
handleSidebarSelect,
}: any) => {
return (
<FixedSidebar
id="sidebar"
style={{
height: 'calc(100% - 122px)',
}}
width={expand ? 193 : 56}
collapsible
>
<FixedSidebar id="sidebar" width={expand ? 193 : 56} collapsible>
<Sidenav
style={{
height: '100%',

4
src/components/layout/styled.tsx

@ -29,7 +29,7 @@ export const MainContainer = styled(StyledContainer)`
`;
export const RootFooter = styled(Footer)`
height: 80px;
height: 88px;
`;
// Titlebar.tsx
@ -107,5 +107,5 @@ export const FixedSidebar = styled(Sidebar)`
position: fixed;
top: 33px;
z-index: 1;
height: 100%;
height: calc(100% - 130px);
`;

Loading…
Cancel
Save