Making the ovrflow auto. (#559)
This commit is contained in:
parent
3c22f8926f
commit
bef53b73aa
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
`;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user