Improve touchtarget for DropDown

Improve FourOhFour page
This commit is contained in:
Michał Gdula 2024-04-25 19:48:12 +01:00
parent e8493d53f8
commit 4433d7cc19
6 changed files with 162 additions and 166 deletions

View file

@ -1,12 +1,12 @@
<script>
import { link } from 'svelte-spa-router';
import { SmileySad } from "phosphor-svelte";
export let params = {};
</script>
<div>
<h1>404</h1>
<p>Could not find resource you've searched for. <a href="/" use:link>Go Back</a></p>
<h1>You're lost!&nbsp;<SmileySad weight="fill" /></h1>
<p>Error 404</p>
</div>
<style lang="scss">
@ -21,18 +21,14 @@
flex-direction: column;
}
h1 {
display: flex;
justify-content: center;
align-items: center;
font-size: 50px;
text-align: center;
}
p {
text-align: center;
}
a {
text-decoration: none;
color: $color-primary;
&:hover {
text-decoration: underline;
}
}
</style>