mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:23:08 +02:00
36 lines
754 B
Vue
36 lines
754 B
Vue
<template>
|
|
<Transition :name="$store.state.animation ? '_transition_zoom' : ''" appear>
|
|
<div class="mjndxjcg">
|
|
<img src="https://xn--931a.moe/assets/error.jpg" class="_ghost"/>
|
|
<p><i class="ti ti-alert-triangle"></i> {{ i18n.ts.somethingHappened }}</p>
|
|
<MkButton class="button" @click="() => $emit('retry')">{{ i18n.ts.retry }}</MkButton>
|
|
</div>
|
|
</Transition>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import { i18n } from '@/i18n';
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mjndxjcg {
|
|
padding: 32px;
|
|
text-align: center;
|
|
|
|
> p {
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
> .button {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
> img {
|
|
vertical-align: bottom;
|
|
height: 128px;
|
|
margin-bottom: 16px;
|
|
border-radius: 16px;
|
|
}
|
|
}
|
|
</style>
|