diff options
author | Mohammad Amoush <mohammad_amoush@brown.edu> | 2019-07-26 17:24:27 -0400 |
---|---|---|
committer | Mohammad Amoush <mohammad_amoush@brown.edu> | 2019-07-26 17:24:27 -0400 |
commit | 4e73b2b844846ee39e743f69df6225fb4cbf4f2c (patch) | |
tree | 5d992a0a92d51b71a219335397af2d356b430784 /src/client/views/presentationview/PresentationView.tsx | |
parent | 24a73583847e6ab00c8b1a00859129665e6ac212 (diff) |
Preview shown with right css
Diffstat (limited to 'src/client/views/presentationview/PresentationView.tsx')
-rw-r--r-- | src/client/views/presentationview/PresentationView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/presentationview/PresentationView.tsx b/src/client/views/presentationview/PresentationView.tsx index 95458b4ca..718af1bf2 100644 --- a/src/client/views/presentationview/PresentationView.tsx +++ b/src/client/views/presentationview/PresentationView.tsx @@ -811,7 +811,7 @@ export class PresentationView extends React.Component<PresViewProps> { let width = NumCast(this.curPresentation.width); return ( - <div className="presentationView-cont" style={{ width: width, overflow: "hidden" }}> + <div className="presentationView-cont" style={{ width: width, overflowY: "scroll", overflowX: "hidden" }}> <div className="presentationView-heading"> {this.renderSelectOrPresSelection()} <button title="Close Presentation" className='presentation-icon' onClick={this.closePresentation}><FontAwesomeIcon icon={"times"} /></button> |