|
@@ -126,7 +126,7 @@ export class RcsbFv3DCustomComponent<R,L,S> extends React.Component <RcsbFv3DCus
|
|
|
const widthFr: number = Math.round((1-this.state.pfvScreenFraction)*100);
|
|
|
const cssWidth: string = widthFr.toString()+"%";
|
|
|
const cssHeight: string = "100%";
|
|
|
- return {...(this.useDefaultCss() ? {width:cssWidth, height:cssHeight} : {}), ...css };
|
|
|
+ return {...(this.useDefaultCss() ? {width:cssWidth, height:cssHeight, overflowY:"auto", overflowX:"hidden"} : {}), ...css };
|
|
|
}
|
|
|
|
|
|
private static mainDivCssConfig(css: CSSProperties | undefined): CSSProperties{
|