hippofish/packages/client/src/pages/no-graze.vue
Kainoa Kanter 78d8767124 feat: allow users to choose icon set
Co-authored-by: naskya <m@naskya.net>
2023-10-17 01:57:20 +00:00

39 lines
680 B
Vue

<template>
<transition :name="defaultStore.state.animation ? 'zoom' : ''" appear>
<div :class="$style.root">
<img
src="/static-assets/badges/info.webp"
class="_ghost"
alt="Error"
/>
<p>
<i :class="icon('ph-warning')"></i>
{{ i18n.ts.noGraze }}
</p>
</div>
</transition>
</template>
<script lang="ts" setup>
import { i18n } from "@/i18n";
import { defaultStore } from "@/store";
import icon from "@/scripts/icon";
</script>
<style lang="scss" module>
.root {
padding: 32px;
text-align: center;
> p {
margin: 0 0 8px 0;
}
> img {
vertical-align: bottom;
height: 128px;
margin-bottom: 16px;
border-radius: 16px;
}
}
</style>