Making the ovrflow auto. (#559)

This commit is contained in:
satbir121 2020-09-17 13:27:19 +05:30 committed by GitHub
parent 3c22f8926f
commit bef53b73aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ const TabsWrapper = styled.div<{ shouldOverflow?: boolean }>`
}
.react-tabs__tab-panel {
height: calc(100% - 32px);
overflow: scroll;
overflow: auto;
}
.react-tabs__tab-list {
display: flex;

View File

@ -87,7 +87,7 @@ const StyledDialog = styled(Dialog)<{ setMaxWidth?: boolean }>`
const LeftPaneWrapper = styled.div`
// height: 50vh;
overflow: scroll;
overflow: auto;
width: 256px;
display: flex;
padding-left: 16px;
@ -97,7 +97,7 @@ const LeftPaneWrapper = styled.div`
`;
const ApplicationContainer = styled.div`
height: calc(100vh - ${props => props.theme.homePage.search.height - 40}px);
overflow: scroll;
overflow: auto;
padding-right: ${props => props.theme.homePage.leftPane.rightMargin}px;
margin-top: ${props => props.theme.homePage.search.height}px;
margin-left: ${props =>
@ -146,7 +146,7 @@ const StyledAnchor = styled.a`
`;
const WorkpsacesNavigator = styled.div`
overflow: scroll;
overflow: auto;
height: calc(100vh - ${props => props.theme.homePage.header + 36 + 25}px);
`;