Skip to content

Commit

Permalink
Merge pull request PortalNetwork#1 from MikeCheng1208/develop
Browse files Browse the repository at this point in the history
add Privacy & Policy
  • Loading branch information
MikeCheng1208 authored Aug 9, 2018
2 parents 16eaece + ccfe0ed commit 8272241
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
17 changes: 17 additions & 0 deletions dapp/src/components/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,20 @@ img {
background-image: url("../images/ladder.png");
bottom: 38px;
left: 75px; }

span.text {
position: fixed;
display: block;
width: 100%;
height: 30px;
bottom: 60px;
left: 0; }
span.text .footer {
width: 50%;
height: 30px;
margin: 0 auto;
display: flex;
justify-content: space-around; }
span.text .footer > a {
color: #fff;
text-decoration: underline; }
9 changes: 9 additions & 0 deletions dapp/src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,15 @@ class App extends Component {

{ isShowTutorial && <Tutorial onClose={this.handleCloseTutorial} /> }
{ isLoadingCoinLoading && <LoadingCoin />}


<span className="text">
<div className="footer">
<a href="https://www.portal.network/" target="_blank">Powered by Portal Network</a>
<a href="https://www.portal.network/privacy_policy.html" target="_blank">Privacy & Policy</a>
<a href="https://www.portal.network/terms_coditions.html" target="_blank">Terms of use</a>
</div>
</span>
</div>
);
}
Expand Down
20 changes: 20 additions & 0 deletions dapp/src/components/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,24 @@ img{
left: 75px;
}
}
}

span.text{
position: fixed;
display: block;
width: 100%;
height: 30px;
bottom: 60px;
left: 0;
.footer{
width: 50%;
height: 30px;
margin: 0 auto;
display: flex;
justify-content: space-around;
>a{
color: #fff;
text-decoration: underline;
}
}
}

0 comments on commit 8272241

Please sign in to comment.