diff --git a/app/assets/stylesheets/settings.scss b/app/assets/stylesheets/settings.scss index e87e78b8d..fc4624de3 100755 --- a/app/assets/stylesheets/settings.scss +++ b/app/assets/stylesheets/settings.scss @@ -41,6 +41,9 @@ $input-width: 650px; display: block; float: right; } + .crayons-indicator { + margin-left: 5px; + } button, a[role='button'] { transition: all 0.4s ease; diff --git a/app/javascript/githubRepos/singleRepo.jsx b/app/javascript/githubRepos/singleRepo.jsx index 2ec1dba48..57452da52 100644 --- a/app/javascript/githubRepos/singleRepo.jsx +++ b/app/javascript/githubRepos/singleRepo.jsx @@ -11,7 +11,11 @@ export class SingleRepo extends Component { forkLabel = () => { const { fork } = this.props; if (fork) { - return fork; + return ( + + fork + + ); } return null; };