Fix long table scroll

This commit is contained in:
Charles Bochet
2023-04-26 17:29:00 +02:00
parent 6c7eb53333
commit 04051e737f
5 changed files with 5 additions and 0 deletions

View File

@ -23,12 +23,14 @@ const ContentContainer = styled.div`
padding-right: ${(props) => props.theme.spacing(3)};
padding-bottom: ${(props) => props.theme.spacing(3)};
width: calc(100% - ${(props) => props.theme.spacing(3)});
height: calc(100% - 54px);
`;
const ContentSubContainer = styled.div`
display: flex;
background: ${(props) => props.theme.primaryBackground};
border-radius: 8px;
height: 100%;
flex: 1;
`;