Skip to content
Snippets Groups Projects
Unverified Commit b3f01947 authored by Nick Fitzpatrick's avatar Nick Fitzpatrick Committed by GitHub
Browse files

Have DashboardStyled use all available screen space (#23708)

parent 3856feeb
No related branches found
No related tags found
No related merge requests found
......@@ -26,8 +26,8 @@ export const DashboardLoadingAndErrorWrapper = styled(
);
},
)`
flex: 1 0 auto;
min-height: 100%;
height: 1px;
// prevents header from scrolling so we can have a fixed sidebar
${({ isFullHeight }) =>
isFullHeight &&
......@@ -39,7 +39,7 @@ export const DashboardLoadingAndErrorWrapper = styled(
export const DashboardStyled = styled.div`
display: flex;
flex-direction: column;
height: 100%;
min-height: 100%;
overflow-x: hidden;
width: 100%;
`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment