From 433c4b050fffe91bd5c1d68ec6a473332c4eb19f Mon Sep 17 00:00:00 2001 From: Raghu-Ch Date: Mon, 17 Sep 2018 19:43:44 -0400 Subject: [PATCH] fixed page-not-found c --- src/app/page-not-found/page-not-found.component.ts | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/app/page-not-found/page-not-found.component.ts b/src/app/page-not-found/page-not-found.component.ts index a47281d..88a2248 100644 --- a/src/app/page-not-found/page-not-found.component.ts +++ b/src/app/page-not-found/page-not-found.component.ts @@ -3,16 +3,11 @@ import { Component } from '@angular/core'; @Component({ selector: 'app-page-not-found', template: ` -
- - error -

404!

-

- page-not-found! -

-
+
+ error +

404! page-not-found

`, - styles: ['p,i {color: red;}', 'i {font-size: 60px;}', '.center {align-items: center; justify-content: center;}'] + styles: ['p,i {color: red; font-size: 24px;}', 'i {font-size: 90px;}', '.aligner {position: relative; top: 200px}'] }) export class PageNotFoundComponent { }