Skip to content

Commit

Permalink
Fixed #594 (#596)
Browse files Browse the repository at this point in the history
Co-authored-by: Sudhir Verma <[email protected]>
  • Loading branch information
asa1997 and sudhirverma authored Feb 23, 2024
1 parent ec00280 commit 2c9e66b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const BasicTable: React.FC<TableProps> = ({ tableData, tableHeading, tableStyle}
return (<>
<TableContainer component={Paper} style={{margin: "10px 40px 50px 40px", borderRadius: "0", height: "80%"}}>
<Table size="small" aria-label="a dense table" style={{ height: "100%" }}>
<thead style={{ backgroundColor: "#8585ed", color: "white" }} >
<thead style={{ backgroundColor: "#8585ed", color: "white", position: "sticky", top: 0 }} >

<tr>
{tableHeading?.map((column, index) => (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/BesVersionHistory/AssessmentReport/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ function modalStyle(report: string) {

width: "fit-content",

height: "fit-content",
height: "90%",

boxShadow: "24",

Expand Down

0 comments on commit 2c9e66b

Please sign in to comment.