fix: allow widget overflow (#2982)
This commit is contained in:
parent
9173d8c97e
commit
5ea2b6fe2f
@ -271,6 +271,8 @@ export default class CodeControl extends React.Component {
|
|||||||
id={forID}
|
id={forID}
|
||||||
className={css`
|
className={css`
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
border-radius: 0 3px 3px 3px;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
.CodeMirror {
|
.CodeMirror {
|
||||||
height: auto;
|
height: auto;
|
||||||
|
@ -13,8 +13,10 @@ const SettingsPaneContainer = styled.div`
|
|||||||
z-index: 10;
|
z-index: 10;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
overflow: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
|
border-radius: 0 3px 3px 0;
|
||||||
${shadows.drop};
|
${shadows.drop};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user