Skip to content

Commit

Permalink
added home buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Sep 4, 2021
1 parent f4de03e commit 9264933
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@
<h1>Under maintenance</h1>
</div>
<h3>Please check again later</h3>
<app-button1 [text]="'HOME'" [brandColor]="true" [isSleekButton]="true" (click)="router.navigate(['/'])">
</app-button1>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.maintenance-content h3{
color: var(--brand-color);
}

.maintenance-content app-button1 {
margin-top: 40px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
</div>
<h1>404 Page not found</h1>
</div>
<h3>Something went wrong</h3>
<h3>Something went wrong!</h3>
<app-button1 [text]="'HOME'" [brandColor]="true" [isSleekButton]="true" (click)="router.navigate(['/'])">
</app-button1>
</div>
</div>
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/* Intentionally blank */
.notfound-content h3 {
color: var(--brand-color);
}

.notfound-content app-button1 {
margin-top: 40px;
}

0 comments on commit 9264933

Please sign in to comment.