Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added dashboard link #150

Merged
merged 2 commits into from
Jun 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Frontend/src/routes/+error.svelte
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
<script>

import { scale } from "svelte/transition";

</script>
<div class="body">

<div class="column">
<span class="material-icons colored found icon-primary" style="font-size: 80px;">search</span>
<h2>This page was not found.</h2>
<a href="/dash" class="button icon-primary">Did you mean to go to the dashboard?</a>
</div>
</div>

<style lang="scss">
@import '$lib/styles/comp.scss';

.found {
position: absolute;
animation: found 10s infinite;
text-shadow: 2px 2px 10px black;
}

a {
text-decoration: none;
}

@keyframes found {
0% {
transform: translate(-130%, -22%) scale(1);
Expand Down