78d8767124
Co-authored-by: naskya <m@naskya.net>
39 lines
680 B
Vue
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>
|