remove css and unused import

This commit is contained in:
Çetin 2022-01-14 19:22:19 +03:00
parent ce6478f4fc
commit ca391ef1d6
3 changed files with 3 additions and 11 deletions

View File

@ -4,7 +4,7 @@
<div class="surface-card h-full w-full m-0 py-7 px-4" style="border:none; border-radius:53px;">
<div class="grid flex flex-column align-items-center justify-content-center">
<div style="border-radius:50%; height:38px; width:38px;" class="flex justify-content-center align-items-center bg-pink-500">
<i class="pi pi-fw pi-exclamation-circle" style="font-size:1.5rem; margin-left:2px; color:#ffffff"></i>
<i class="pi pi-fw pi-exclamation-circle" style="font-size:1.5rem; color:#ffffff"></i>
</div>
<h1 class="font-bold text-5xl text-gray-900 mb-2">Error Occured</h1>
<span class="text-gray-600">Requested resource is not available.</span>

View File

@ -1,15 +1,7 @@
import { Component, OnInit } from '@angular/core';
import { Component } from '@angular/core';
@Component({
selector: 'app-error',
templateUrl: './error.component.html',
styleUrls: ['./error.component.scss']
})
export class ErrorComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
export class ErrorComponent { }