Fixed height, theme color

This commit is contained in:
Zakary Timson 2018-11-14 16:05:59 -05:00
parent bfad735375
commit 44fc493f37
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
"version": "0.2.0", "version": "0.2.0",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve --host=0.0.0.0",
"build": "ng build --configuration=production", "build": "ng build --configuration=production",
"test": "ng test", "test": "ng test",
"lint": "ng lint", "lint": "ng lint",

View File

@ -6,7 +6,7 @@
<small class="text-muted ml-2">v{{environment.version}}</small> <small class="text-muted ml-2">v{{environment.version}}</small>
</span> </span>
</mat-toolbar> </mat-toolbar>
<mat-drawer-container class="h-100 w-100 example-container" [hasBackdrop]="false"> <mat-drawer-container [hasBackdrop]="false" style="height: calc(100vh - 64px)">
<mat-drawer class="bg-primary" [mode]="mobile ? 'push' : 'side'" [opened]="open" [disableClose]="!mobile" [autoFocus]="false"> <mat-drawer class="bg-primary" [mode]="mobile ? 'push' : 'side'" [opened]="open" [disableClose]="!mobile" [autoFocus]="false">
<mat-nav-list class="p-0"> <mat-nav-list class="p-0">
<mat-divider></mat-divider> <mat-divider></mat-divider>

View File

@ -6,7 +6,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#FFFFFF"> <meta name="theme-color" content="#2F323A">
<link rel="icon" type="image/x-icon" href="assets/icon.png"> <link rel="icon" type="image/x-icon" href="assets/icon.png">
<link rel="stylesheet" type="text/css" href="assets/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="assets/bootstrap.min.css">