mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-05-28 22:33:12 +00:00
32 lines
No EOL
568 B
Svelte
32 lines
No EOL
568 B
Svelte
<script>
|
|
import { SmileySad } from "phosphor-svelte";
|
|
</script>
|
|
|
|
<div>
|
|
<h1>You're lost! <SmileySad weight="fill" /></h1>
|
|
<p>Error 404</p>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
@import "%/styles/vars";
|
|
|
|
div {
|
|
padding: $spacing-large;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
h1 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-size: $font-size-very-fucking-big;
|
|
text-align: center;
|
|
}
|
|
p {
|
|
text-align: center;
|
|
}
|
|
</style> |