-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
CerealKiller97
committed
Aug 30, 2019
1 parent
975790e
commit 7151691
Showing
13 changed files
with
422 additions
and
81 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.light-text { | ||
font-weight: 100 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.light-text { | ||
font-weight: 100 !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<mat-grid-list cols="2" rowHeight="2:1"> | ||
<mat-grid-tile> | ||
<h1>Welcome to VideoGamer</h1> | ||
<h1 class="light-text">Welcome to VideoGamer</h1> | ||
</mat-grid-tile> | ||
<mat-grid-tile>2</mat-grid-tile> | ||
</mat-grid-list> |
4 changes: 4 additions & 0 deletions
4
src/app/modules/shared-components/components/footer/footer.component.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.text-center { | ||
text-align: center !important; | ||
} | ||
|
||
.light-text { | ||
font-weight: 100 !important; | ||
} |
2 changes: 1 addition & 1 deletion
2
src/app/modules/shared-components/components/footer/footer.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<mat-toolbar color="primary"> | ||
<small class="text-center">Copyright 2019 © Stefan Bogdanovic</small> | ||
<small class="text-center light-text">Copyright 2019 © Stefan Bogdanovic</small> | ||
</mat-toolbar> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ | |
.nav-link { | ||
color: whitesmoke; | ||
} | ||
|
||
.light-text { | ||
font-weight: 100 !important; | ||
} |
4 changes: 2 additions & 2 deletions
4
src/app/modules/shared-components/components/header/header.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 6 additions & 2 deletions
8
src/app/modules/shared-components/components/loading-spinner/loading-spinner.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
<div *ngIf="loading"> | ||
<app-fingerprint-spinner [animationDuration]="1000" [size]="100" [color]="'#ff1d5e'"> | ||
</app-fingerprint-spinner> | ||
<mat-grid-list cols="1" rowHeight="100"> | ||
<mat-grid-tile> | ||
<app-fingerprint-spinner [animationDuration]="1000" [size]="100" [color]="'#ff1d5e'"> | ||
</app-fingerprint-spinner> | ||
</mat-grid-tile> | ||
</mat-grid-list> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.