Browse Source

Issue #852: fixed overflow issue of seq panel

cycle20 1 year ago
parent
commit
03ca14efd0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/RcsbFv3D/RcsbFv3DCustomComponent.tsx

+ 1 - 1
src/RcsbFv3D/RcsbFv3DCustomComponent.tsx

@@ -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{