fix(UX): corrected overflow of instruction content (#16236)
This commit is contained in:
committed by
Quincy Larson
parent
674ce83ab0
commit
002e7d38c7
@@ -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,
|
||||
|
@@ -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 }>
|
||||
|
Reference in New Issue
Block a user