Skip to content

Commit

Permalink
LinkRequest Is Now Left
Browse files Browse the repository at this point in the history
  • Loading branch information
Coen committed Jan 27, 2018
1 parent 34d96e0 commit 0010d14
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/linkRequestButton/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ import style from './style';

export default class LinkRequestButton extends Component {
render() {
return <input type="button" value="Link to request" class={style.linkRequest} />;
return (
<div class={style.linkDiv}>
<input type="button" value="Link to request" class={style.linkRequest} />
</div>
);
}
}
4 changes: 4 additions & 0 deletions src/components/linkRequestButton/style.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.linkDiv{
display: flex;
justify-content: flex-end;
}
.linkRequest {
background: none;
border: 1px solid var(--main-color);
Expand Down

0 comments on commit 0010d14

Please sign in to comment.