Skip to content

Commit

Permalink
update scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
shami-sneha committed Feb 12, 2024
1 parent b8fb86a commit d4f5d24
Show file tree
Hide file tree
Showing 2,900 changed files with 502,984 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/IconBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export default function IconBar(): JSX.Element {
const maxDate = useAppSelector((state) => state.dataSelection.maxDate);

const toggleFullscreen = () => {
if (fsApi.isFullscreenEnabled) {
void fsApi.disableFullscreen();
if (fsApi?.isFullscreen) {
void fsApi?.exit();
} else {
void fsApi.enableFullscreen();
void fsApi?.request();
}
};

Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Scenario/CompartmentList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export default function CompartmentList(): JSX.Element {
paddingTop: theme.spacing(2),
paddingLeft: 0,
paddingRight: 0,
boxShadow: 'inset 0 -10px 10px -10px #000', // Add the box-shadow
}}
>
<SimulationStartTitle />
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Scenario/DataCardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export default function DataCardList(): JSX.Element {
overflowX: 'auto',
marginLeft: theme.spacing(3),
minWidth: '400px',
boxShadow: 'inset 0 -10px 10px -10px #000', // Add the box-shadow stylecd
}}
>
<CaseDataCard
Expand Down
12 changes: 12 additions & 0 deletions node_modules/.bin/loose-envify

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions node_modules/.bin/loose-envify.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions node_modules/.bin/loose-envify.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d4f5d24

Please sign in to comment.