fix(UX): corrected overflow of instruction content (#16236)

This commit is contained in:
Shane Farrar
2017-12-21 01:24:59 -05:00
committed by Quincy Larson
parent 674ce83ab0
commit 002e7d38c7
2 changed files with 4 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ export function Divider({ left, dividerClicked }) {
cursor: 'col-resize',
height: '100%',
left: left + '%',
marginLeft: '-4px',
marginLeft: '0px',
position: 'absolute',
right: 'auto',
top: 0,

View File

@@ -22,7 +22,9 @@ export function Pane({
overflowY: 'auto',
position: 'absolute',
right: right + '%',
top: 0
top: 0,
paddingLeft: '4px',
paddingRight: '4px'
};
return (
<div style={ style }>