summaryrefslogtreecommitdiff
path: root/src/client/components/error.vue
blob: 9c5eaa6e196b406ed4fd53a1dae48a7e35aa9c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<template>
<div class="mjndxjcg _panel">
	<img src="https://xn--931a.moe/assets/error.jpg" alt=""/>
	<p><fa :icon="faExclamationTriangle"/> {{ $t('error') }}</p>
	<mk-button @click="() => $emit('retry')" class="button">{{ $t('retry') }}</mk-button>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
import i18n from '../i18n';
import MkButton from './ui/button.vue';

export default Vue.extend({
	i18n,
	components: {
		MkButton,
	},
	data() {
		return {
			faExclamationTriangle
		};
	},
});
</script>

<style lang="scss" scoped>
.mjndxjcg {
	max-width: 350px;
	margin: 0 auto;
	padding: 32px;
	text-align: center;

	> p {
		margin: 0 0 8px 0;
	}

	> .button {
		margin: 0 auto;
	}

	> img {
		vertical-align: bottom;
		height: 150px;
		margin-bottom: 16px;
		border-radius: 16px;
		pointer-events: none;
		user-select: none;
	}
}
</style>