rudeshark.net/src/client/components/error.vue

49 lines
908 B
Vue
Raw Normal View History

<template>
2020-07-09 14:18:46 +02:00
<transition :name="$store.state.device.animation ? 'zoom' : ''" appear>
<div class="mjndxjcg _panel">
<img src="https://xn--931a.moe/assets/error.jpg" class="_ghost"/>
<p><fa :icon="faExclamationTriangle"/> {{ $t('error') }}</p>
2020-07-24 18:36:39 +02:00
<mk-button @click="() => $emit('retry')" class="button" v-t="'retry'"></mk-button>
2020-07-09 14:18:46 +02:00
</div>
</transition>
</template>
<script lang="ts">
import Vue from 'vue';
import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons';
import MkButton from './ui/button.vue';
export default Vue.extend({
components: {
MkButton,
},
data() {
return {
faExclamationTriangle
};
},
});
</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>