Add horizontal scroll on tables

This commit is contained in:
Charles Bochet
2023-04-25 12:14:31 +02:00
parent 67e4e79623
commit 8de2d345ed
3 changed files with 60 additions and 43 deletions

View File

@ -12,6 +12,7 @@ const StyledContainer = styled.div`
display: flex;
flex: 1;
flex-direction: column;
overflow: hidden;
`;
const ContentContainer = styled.div`
@ -21,6 +22,7 @@ const ContentContainer = styled.div`
flex: 1;
padding-right: ${(props) => props.theme.spacing(3)};
padding-bottom: ${(props) => props.theme.spacing(3)};
width: calc(100% - ${(props) => props.theme.spacing(3)});
`;
const ContentSubContainer = styled.div`