Skip to content

Commit

Permalink
Merge pull request #134 from stratisproject/ui
Browse files Browse the repository at this point in the history
Improve setup design, add window title
  • Loading branch information
dev0tion authored Jun 30, 2017
2 parents 4d04fd1 + 61ead59 commit bc353f3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions Breeze.UI/src/app/setup/setup.component.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
<section id="breeze">
<div class="login d-flex align-items-center text-center">
<div class="container">
<!--<p class="text-back text-left mb-5 col-6 row">
<button type="button" class="btn btn-link text-back" (click)="onBackClicked()">Back</button>
</p>-->
<p class="text-back text-left mb-5 col-6 row"><a (click)="onBackClicked()">Back</a></p>
<h3 class="display-5">Welcome</h3>
<p class="lead">
If you would like to create a new wallet, please click Create. <br/>
When you have used Breeze before, you can click Restore to recover your wallet.
</p>
<div class="row d-flex justify-content-center">
<button type="button" class="btn btn-darkgray btn-lg" (click)="onBackClicked()">Back</button>
<button type="button" class="btn btn-darkgray btn-lg" (click)="onCreateClicked()">Create</button>
<button type="button" class="btn btn-darkgray btn-lg" (click)="onRecoverClicked()">Restore</button>
<button type="button" class="btn btn-linkgray btn-lg" (click)="onRecoverClicked()">Restore</button>
</div>
</div>
<!-- /container-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h5 class="text-uppercase">Latest Transactions</h5>
<!-- /card-->
</div>
</div>
<ng-template #noTransactions>Looks like you haven't made any transactions yet</ng-template>
<ng-template #noTransactions class="text-muted">Looks like you haven't made any transactions yet</ng-template>
</section>
<!-- /TRANSACTIONS -->
<status-bar></status-bar>
Expand Down
2 changes: 1 addition & 1 deletion Breeze.UI/src/app/wallet/history/history.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h5 class="text-uppercase">Transactions</h5>
</div>
<!-- /card-->
<div>
<ng-template #noTransactions>Looks like you haven't made any transactions yet.</ng-template>
<ng-template #noTransactions class="text-muted">Looks like you haven't made any transactions yet.</ng-template>
</div>
</section>
<!-- /TRANSACTIONS -->
Expand Down
2 changes: 1 addition & 1 deletion Breeze.UI/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Breeze</title>
<title>Breeze Wallet v0.1.0 alpha</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
Expand Down
6 changes: 3 additions & 3 deletions Breeze.UI/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -617,10 +617,10 @@ input.cmn-toggle-round-flat:checked + label:after {
color: #366a96; }
.login .container form {
margin-bottom: 4em; }
.login .container .textback a {
color: #C0BECC;
.login .container .textback .text-back {
color: #C0BECC !important;
text-decoration: underline; }
.login .container .textback a:hover {
.login .container .textback:hover {
text-decoration: none; }
.login .container .badge {
margin: .5em auto; }
Expand Down

0 comments on commit bc353f3

Please sign in to comment.