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

pull/16244/head
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', cursor: 'col-resize',
height: '100%', height: '100%',
left: left + '%', left: left + '%',
marginLeft: '-4px', marginLeft: '0px',
position: 'absolute', position: 'absolute',
right: 'auto', right: 'auto',
top: 0, top: 0,

View File

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