aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/not-found/not-found.component.html
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-22 16:42:46 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-22 16:42:46 +0200
commitba8b463e4c4f6ad192dfe7306134669cfec0dafa (patch)
tree59653a6975843ceeebdd9de856575197125ce26d /src/app/components/not-found/not-found.component.html
parentb78b0d1509ba1f7eae276734254933374544827e (diff)
downloadDevHive-Angular-ba8b463e4c4f6ad192dfe7306134669cfec0dafa.tar
DevHive-Angular-ba8b463e4c4f6ad192dfe7306134669cfec0dafa.tar.gz
DevHive-Angular-ba8b463e4c4f6ad192dfe7306134669cfec0dafa.zip
Major redesign of not-found page component style
Diffstat (limited to 'src/app/components/not-found/not-found.component.html')
-rw-r--r--src/app/components/not-found/not-found.component.html26
1 files changed, 17 insertions, 9 deletions
diff --git a/src/app/components/not-found/not-found.component.html b/src/app/components/not-found/not-found.component.html
index 83d73ce..50bb39b 100644
--- a/src/app/components/not-found/not-found.component.html
+++ b/src/app/components/not-found/not-found.component.html
@@ -1,10 +1,18 @@
-<main id="content">
- <summary class="title">
- Page not found!
- </summary>
- <hr>
- <nav id="back-btns">
- <button class="submit-btn" type="submit" (click)="backToFeed()">Back to feed</button>
- <button class="submit-btn" type="submit" (click)="backToLogin()">Back to login</button>
- </nav>
+<main class="centered-content flex-col flex-center-align-items flex-justify-center full-height">
+ <div class="card full-width padding-big">
+ <summary class="title">
+ Page not found!
+ </summary>
+ <hr class="card-hr">
+ <nav class="flex-row flexible-children padding-small">
+ <button class="flex-row flex-justify-center flex-center-align-items faded-slim-border padding-smaller lighter-hover click-effect border-radius-smaller margin-right-small" (click)="backToFeed()">
+ <img src="/assets/icons/tabler-icon-home.svg">
+ &nbsp;Back to feed
+ </button>
+ <button class="flex-row flex-justify-center flex-center-align-items faded-slim-border padding-smaller lighter-hover click-effect border-radius-smaller" (click)="backToLogin()">
+ <img src="/assets/icons/tabler-icon-login.svg">
+ &nbsp;Back to login
+ </button>
+ </nav>
+ </div>
</main>