feat: pipeline-task details

This commit is contained in:
Ivan Li
2021-05-12 21:18:17 +08:00
parent c88e9e6785
commit 73b1c6a40d
7 changed files with 232 additions and 46 deletions

View File

@@ -60,12 +60,12 @@ export const ProjectDetail: FC<Props> = ({ project, children }) => {
alignItems="stretch"
className={classes.root}
>
<Grid item xs={3} style={{ height: "100%", display: "flex" }}>
<Grid item lg={1} style={{ height: "100%", display: "flex" }}>
<Paper className={classes.pipelineListContainer}>
<PipelineList projectId={project.id} />
</Paper>
</Grid>
<Grid item xs={9} style={{ height: "100%", display: "flex", overflowY: 'auto' }}>
<Grid item xs={10} lg={11} style={{ height: "100%", display: "flex", overflowY: 'auto' }}>
{children}
</Grid>
</Grid>