hippofish/packages/client/src/components/global/MkError.vue

46 lines
795 B
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<transition :name="$store.state.animation ? 'zoom' : ''" appear>
<div class="mjndxjcg">
<img
src="/static-assets/badges/error.png"
class="_ghost"
alt="Error"
/>
<p>
<i class="ph-warning ph-bold ph-lg"></i>
{{ i18n.ts.somethingHappened }}
</p>
<MkButton class="button" @click="() => $emit('retry')">{{
i18n.ts.retry
}}</MkButton>
</div>
</transition>
</template>
2022-01-07 07:02:25 +01:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import MkButton from "@/components/MkButton.vue";
import { i18n } from "@/i18n";
</script>
<style lang="scss" scoped>
2020-02-05 06:39:52 +01:00
.mjndxjcg {
padding: 32px;
text-align: center;
> p {
margin: 0 0 8px 0;
}
> .button {
margin: 0 auto;
}
2020-02-08 10:35:42 +01:00
> img {
vertical-align: bottom;
height: 128px;
2020-02-08 10:35:42 +01:00
margin-bottom: 16px;
border-radius: 16px;
}
}
</style>