Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c5928 commit d6f0321Copy full SHA for d6f0321
src/components/article/article.js
@@ -83,9 +83,15 @@ class IndexRoute extends React.Component {
83
{this.props.children}
84
{this.props.docOnGithub ? (
85
<div className="footer__inner">
86
- <a href={githubRepo + this.props.docOnGithub}>
+ <a href={githubRepo + this.props.docOnGithub} className="pull-left">
87
Edit this page on GitHub
88
</a>
89
+
90
+ <a href="https://www.hackerone.com" target="_blank" className="pull-right">
91
+ Back to HackerOne
92
+ </a>
93
94
+ <div className="clearfix" />
95
</div>
96
) : null}
97
</article>
src/css/main.scss
@@ -73,3 +73,15 @@ h6 {
73
margin-left: auto;
74
margin-right: auto;
75
}
76
77
+.pull-left {
78
+ float: left;
79
+}
80
81
+.pull-right {
82
+ float: right;
+.clearfix {
+ clear: both;
0 commit comments