chore(client): 🎨

This commit is contained in:
syuilo 2020-07-04 18:28:31 +09:00
parent 37c16e5b45
commit 1fd345f563

View file

@ -3,12 +3,10 @@
<portal to="icon"><fa :icon="faExclamationTriangle"/></portal> <portal to="icon"><fa :icon="faExclamationTriangle"/></portal>
<portal to="title">{{ $t('notFound') }}</portal> <portal to="title">{{ $t('notFound') }}</portal>
<section class="_card"> <div class="_fullinfo">
<div class="_content"> <img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/>
<img src="https://xn--931a.moe/assets/not-found.jpg" class="_ghost"/> <div>{{ $t('notFoundDescription') }}</div>
<div>{{ $t('notFoundDescription') }}</div> </div>
</div>
</section>
</div> </div>
</template> </template>
@ -30,20 +28,3 @@ export default Vue.extend({
}, },
}); });
</script> </script>
<style lang="scss" scoped>
.ipledcug {
> ._card {
> ._content {
text-align: center;
> img {
vertical-align: bottom;
height: 150px;
margin-bottom: 16px;
border-radius: 16px;
}
}
}
}
</style>