fix: allow widget overflow (#2982)

This commit is contained in:
Shawn Erquhart 2019-12-19 10:47:43 -05:00 committed by GitHub
parent 9173d8c97e
commit 5ea2b6fe2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -271,6 +271,8 @@ export default class CodeControl extends React.Component {
id={forID}
className={css`
height: 100%;
border-radius: 0 3px 3px 3px;
overflow: hidden;
.CodeMirror {
height: auto;

View File

@ -13,8 +13,10 @@ const SettingsPaneContainer = styled.div`
z-index: 10;
height: 100%;
background-color: #fff;
overflow: hidden;
overflow-y: scroll;
padding: 12px;
border-radius: 0 3px 3px 0;
${shadows.drop};
`;