-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(icons): standardize icon usage with mat-icon component and font …
…awesome icon set - remove google material icons dependency - fix favicon to use new logo
- Loading branch information
1 parent
983e532
commit 26b0cf2
Showing
23 changed files
with
154 additions
and
109 deletions.
There are no files selected for viewing
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
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
20 changes: 7 additions & 13 deletions
20
src/app/examples/examples/examples.component.scss
100644 → 100755
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,23 +1,17 @@ | ||
@import '../../../styles-variables'; | ||
|
||
nav { | ||
margin-bottom: 20px; | ||
position: relative; | ||
|
||
.mat-tab-link { | ||
min-width: 130px; | ||
} | ||
} | ||
|
||
.nav-responsive { | ||
padding: 0 0 24px 0; | ||
|
||
a { | ||
width: 100%; | ||
display: inline-block; | ||
padding-top: 14px; | ||
|
||
mat-icon { | ||
float: left; | ||
position: relative; | ||
top: -1px; | ||
@media (max-width: map-get($grid-breakpoints, sm)) { | ||
.mat-tab-link { | ||
min-width: 0; | ||
padding: 0 15px; | ||
} | ||
} | ||
} |
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
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
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
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 |
---|---|---|
|
@@ -28,7 +28,8 @@ h2 { | |
} | ||
|
||
mat-icon { | ||
margin: 0 10px 0 0; | ||
margin: 5px 5px 0 0; | ||
font-size: 20px; | ||
} | ||
|
||
mat-form-field { | ||
|
3 changes: 2 additions & 1 deletion
3
src/app/shared/big-input/big-input-action.component.html
100644 → 100755
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,5 @@ | ||
<button mat-raised-button color="color" [disabled]="disabled" (click)="onClick()"> | ||
<mat-icon *ngIf="icon">{{icon}}</mat-icon> | ||
<mat-icon *ngIf="fontSet && fontIcon" [fontSet]="fontSet" | ||
[fontIcon]="fontIcon"></mat-icon> | ||
<span *ngIf="label">{{label}}</span> | ||
</button> |
Oops, something went wrong.