Skip to content

Commit

Permalink
removing duplicate vertical scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
jandsonrj committed Apr 25, 2024
1 parent 0f2bc39 commit d91f3b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ export default function MyApp(props) {
<ThemeProvider theme={darkMode ? darkTheme : lightTheme}>
<CssBaseline />
<Box
style={{
sx={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'space-between',
minHeight: '100vh',
overflowY: scrollNeeded ? 'auto' : 'hidden'
overflowY: scrollNeeded ? 'hidden' : 'hidden'
}}
>
<AuthProvider>
Expand Down
6 changes: 3 additions & 3 deletions frontend/pages/pz_pipelines.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ function PZPipelines() {
Photo-z Server Pipelines
</Typography>

<Grid item mb={5}>
<Grid item xs={12} mb={5}>
<SpeczCatalogs />
</Grid>
<Grid item mb={5}>
<Grid item xs={12} mb={5}>
<TrainingSetMaker />
</Grid>
<Grid item>
<Grid item xs={12}>
<PzCompute />
</Grid>
</Grid>
Expand Down

0 comments on commit d91f3b4

Please sign in to comment.