14841: Add inactive user page.
[arvados.git] / src / views / login-panel / login-panel.tsx
index 12c7d6c79de9ccdc0ccad399250ce6c752ed4e59..b9f3194ab0b2aa12fc375a7ac5f966dc6630db1a 100644 (file)
@@ -61,7 +61,9 @@ export const LoginPanel = withStyles(styles)(
         homeCluster: state.auth.homeCluster,
         uuidPrefix: state.auth.localCluster
     }))(({ classes, dispatch, remoteHosts, homeCluster, uuidPrefix }: LoginPanelProps) =>
-        <Grid container direction="column" item xs alignItems="center" justify="center" className={classes.root}>
+        <Grid container justify="center" alignItems="center"
+            className={classes.root}
+            style={{ marginTop: 56, overflowY: "auto", height: "100%" }}>
             <Grid item className={classes.container}>
                 <Typography variant='h6' align="center" className={classes.title}>
                     Welcome to the Arvados Workbench
@@ -98,5 +100,5 @@ export const LoginPanel = withStyles(styles)(
                     </Button>
                 </Typography>
             </Grid>
-        </Grid>
+        </Grid >
     ));