Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjbauer committed Nov 19, 2018
1 parent d2eb086 commit 9def4c1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions frontend/src/pages/PipelineDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,8 @@ const css = stylesheet({
zIndex: 2,
},
summaryCard: {
backgroundColor: color.background,
bottom: 20,
left: 20,
maxHeight: 350,
overflow: 'auto',
padding: 10,
position: 'absolute',
width: 500,
Expand Down Expand Up @@ -209,8 +206,8 @@ class PipelineDetails extends Page<{}, PipelineDetailsState> {
<div className={commonCss.header}>
Summary
</div>
<Button onClick={() => this.setState({ summaryShown: !summaryShown })} color='secondary'>
{summaryShown ? 'Hide' : 'Show'}
<Button onClick={() => this.setState({ summaryShown: false })} color='secondary'>
Hide
</Button>
</div>
<div className={css.summaryKey}>Uploaded on</div>
Expand Down

0 comments on commit 9def4c1

Please sign in to comment.