Add new font and update login
This commit is contained in:
parent
1134f1760c
commit
18f1667a00
6 changed files with 17 additions and 21 deletions
|
@ -3,7 +3,7 @@ main{
|
|||
}
|
||||
|
||||
.footer{
|
||||
font-family: 'Saira Semi Condensed', sans-serif;
|
||||
font-family: 'Spartan', sans-serif;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
* {
|
||||
font-family: 'Saira Semi Condensed', sans-serif;
|
||||
font-family: 'Spartan', sans-serif;
|
||||
}
|
||||
mat-card.coolcard{
|
||||
background-color: #FF5722;
|
||||
|
@ -7,7 +7,7 @@ mat-card.coolcard{
|
|||
margin: 5px;
|
||||
}
|
||||
mat-card.centercard{
|
||||
max-width: 400px;
|
||||
max-width: 450px;
|
||||
border: 1px solid #CCCCCC;
|
||||
}
|
||||
.icon{
|
||||
|
@ -26,3 +26,6 @@ mat-card.centercard{
|
|||
.numbers{
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
}
|
||||
::ng-deep .mat-step-label{
|
||||
font-size: 13px;
|
||||
}
|
||||
|
|
|
@ -8,21 +8,12 @@
|
|||
<mat-card class="centercard">
|
||||
<h3>The Zcash Register</h3>
|
||||
<mat-vertical-stepper #stepper linear>
|
||||
<mat-step label="Log in with a shielded memo" editable="false">
|
||||
<mat-card [formGroup]="entryForm">
|
||||
<mat-step label="Connect your wallet to ZGo" editable="false">
|
||||
<mat-card>
|
||||
<div align="center" id="info">
|
||||
<p>Select your session length and confirm once you've sent your memo:</p>
|
||||
<mat-form-field appearance="outline">
|
||||
<mat-label>Session length</mat-label>
|
||||
<mat-select formControlName="selectedSession">
|
||||
<mat-option *ngFor="let ticket of tickets" [value]="ticket.value">
|
||||
{{ticket.viewValue}}
|
||||
</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-card-actions>
|
||||
<button mat-raised-button color="primary" [disabled]="!entryForm.valid" (click)="login(stepper)">
|
||||
<mat-icon class="icon">login</mat-icon><span class="bigbutton">Log in</span>
|
||||
<button mat-raised-button color="primary" (click)="login(stepper)">
|
||||
<mat-icon class="icon">login</mat-icon><span class="bigbutton">Link wallet</span>
|
||||
</button>
|
||||
</mat-card-actions>
|
||||
</div>
|
||||
|
|
|
@ -157,7 +157,7 @@ export class LoginComponent implements OnInit, AfterViewInit {
|
|||
dialogConfig.disableClose = true;
|
||||
dialogConfig.autoFocus = true;
|
||||
dialogConfig.data = {
|
||||
totalZec: this.entryForm.value.selectedSession,
|
||||
totalZec: 1e-8,
|
||||
addr: this.nodeAddress,
|
||||
session: this.localToken
|
||||
};
|
||||
|
|
|
@ -6,9 +6,10 @@
|
|||
<base href="/">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Saira+Semi+Condensed:wght@400;500&display=swap" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Saira+Semi+Condensed:wght@400;500&family=Spartan:wght@500;700&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
|
|
|
@ -19,8 +19,9 @@
|
|||
|
||||
/*@include mat.all-component-themes($my-theme);*/
|
||||
@import './custom-theme.scss';
|
||||
|
||||
html, body { height: 100%; }
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Roboto, "Helvetica Neue", sans-serif;
|
||||
font-family: 'Spartan', sans-serif;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue