Skip to content

Commit 730a23c

Browse files
committed
style(frontend): format
1 parent e7a456e commit 730a23c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

frontend/src/views/PageNotFoundView.vue

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
<script setup lang="ts">
2-
import UiButton from "@/components/ui/uiButton.vue";
2+
import UiButton from '@/components/ui/uiButton.vue'
33
import { ArrowLeftIcon } from '@untitledui-icons/vue/solid'
44
</script>
55

66
<template>
77
<main>
88
<div class="main__body">
99
<div class="main__container">
10-
<img class="s404" src="/404.png" alt="">
10+
<img class="s404" src="/404.png" alt="" />
1111
<h1 class="title">Whooops, this page is gone</h1>
1212
<p class="subtitle">This page is missing or you wrote the link incorrectly.</p>
1313
</div>
14-
<ui-button @click="$router.push('/')"><ArrowLeftIcon class="arrow-icon"/>Back to home</ui-button>
14+
<ui-button @click="$router.push('/')"
15+
><ArrowLeftIcon class="arrow-icon" />Back to home</ui-button
16+
>
1517
</div>
1618
</main>
1719
</template>
1820

1921
<style lang="scss" scoped>
2022
.s404 {
21-
filter: drop-shadow(0 0 100px #FF0016);
23+
filter: drop-shadow(0 0 100px #ff0016);
2224
width: 100%;
2325
margin-bottom: 20px;
2426
}
@@ -33,7 +35,7 @@ import { ArrowLeftIcon } from '@untitledui-icons/vue/solid'
3335
margin: 0;
3436
font-weight: 300;
3537
font-size: 15px;
36-
color: #9F9F9F;
38+
color: #9f9f9f;
3739
position: relative;
3840
top: -20px;
3941
}

0 commit comments

Comments
 (0)