Skip to content

Commit

Permalink
Width and height issues
Browse files Browse the repository at this point in the history
Signed-off-by: Courtney Gosselin <[email protected]>
  • Loading branch information
CourtneyGosselin committed Dec 11, 2024
1 parent 32b9ead commit 54f3038
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/themes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export function theme(customization) {
xs: 0,
sm: 600,
md: 960,
lg: 1465,
xl: 1920
lg: 1240,
xl: 2560
}
},
typography: themeTypography(themeOption),
Expand Down
2 changes: 1 addition & 1 deletion src/views/clinicalGenomic/widgets/dataVisualization.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function DataVisualization() {

function returndataVisData() {
const data = dataVisData.map((item, index) => (
<Grid item xs={12} sm={12} md={6} lg={3} key={item + index}>
<Grid item xs={12} sm={6} md={6} lg={6} xl={3} key={item + index}>
<CustomOfflineChart
dataObject=""
dataVis={dataVis}
Expand Down

0 comments on commit 54f3038

Please sign in to comment.