Skip to content

Commit

Permalink
added edit button placeholder for folder view page
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueAccords committed Jun 4, 2018
1 parent f9c38ca commit ef8ee8b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 8 additions & 0 deletions client/src/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

// override bulma + add custom scss here

// misc css

.container-space-between {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

// single folder
.single-folder-container {
@include until($desktop) {
Expand Down
5 changes: 4 additions & 1 deletion client/src/views/containers/SingleFolder/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class SingleFolder extends React.Component {
</div>
</section>
<div className="container single-folder-container">
<h2 className='title'>Chips</h2>
<div className="container-space-between">
<h2 className='title'>Chips</h2>
<button className="button">Edit</button>
</div>
<ChipTable chips = {child_chips}/>
</div>
</Fragment>
Expand Down

0 comments on commit ef8ee8b

Please sign in to comment.