Added some images

This commit is contained in:
Zakary Timson 2018-11-29 18:04:17 -05:00
parent 4582016067
commit bf98201eab
6 changed files with 4 additions and 5 deletions

View File

@ -23,7 +23,6 @@
"polyfills": "src/polyfills.ts", "polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json", "tsConfig": "src/tsconfig.app.json",
"assets": [ "assets": [
"src/favicon.ico",
"src/assets" "src/assets"
], ],
"styles": [ "styles": [
@ -87,7 +86,6 @@
], ],
"scripts": [], "scripts": [],
"assets": [ "assets": [
"src/favicon.ico",
"src/assets" "src/assets"
] ]
} }
@ -136,4 +134,4 @@
} }
}, },
"defaultProject": "ETFDemo" "defaultProject": "ETFDemo"
} }

View File

@ -1,5 +1,6 @@
<!--The content below is only a placeholder and can be replaced.--> <!--The content below is only a placeholder and can be replaced.-->
<mat-toolbar> <mat-toolbar>
<img class="mr-3" src="assets/logo.png" height="36px" width="auto">
<span>ETF Demo</span> <span>ETF Demo</span>
<span class="mx-auto"><!-- Spacer --></span> <span class="mx-auto"><!-- Spacer --></span>
<button mat-button (click)="fileUploader.click()"> <button mat-button (click)="fileUploader.click()">
@ -7,6 +8,7 @@
Upload Upload
</button> </button>
</mat-toolbar> </mat-toolbar>
<img *ngIf="!chartResults" class="float-right mt-2 mr-5" src="assets/starthere.png">
<div *ngIf="chartResults" class="w-100" [style.height]="chartHeight"> <div *ngIf="chartResults" class="w-100" [style.height]="chartHeight">
<ngx-charts-bar-horizontal-2d #chart <ngx-charts-bar-horizontal-2d #chart
[results]="chartResults" [results]="chartResults"
@ -15,5 +17,4 @@
[yAxisTickFormatting]="format"> [yAxisTickFormatting]="format">
</ngx-charts-bar-horizontal-2d> </ngx-charts-bar-horizontal-2d>
</div> </div>
<input #fileUploader type="file" accept="text/csv" multiple hidden (change)="upload(fileUploader.files)"> <input #fileUploader type="file" accept="text/csv" multiple hidden (change)="upload(fileUploader.files)">

BIN
src/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
src/assets/starthere.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -6,7 +6,7 @@
<base href="/"> <base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="icon" type="image/x-icon" href="assets/logo.png">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"> <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
</head> </head>
<body> <body>