mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-06-20 00:50:35 +00:00
Stop moving elements when error appears under input make 404, 500, Empty Basket and No Item sections larger clean up test-api slightly
32 lines
No EOL
616 B
Svelte
32 lines
No EOL
616 B
Svelte
<script lang="ts">
|
|
import { SmileySad } from "phosphor-svelte";
|
|
</script>
|
|
|
|
<div>
|
|
<h1>Server Fucking Died! <SmileySad weight="fill" /></h1>
|
|
<p>Error 500</p>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
@import "../styles/vars";
|
|
|
|
div {
|
|
height: 400px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
h1 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-size: $font-size-very-fucking-big;
|
|
text-align: center;
|
|
}
|
|
p {
|
|
text-align: center;
|
|
}
|
|
</style> |