2022-11-30 20:26:13 +01:00
|
|
|
<template>
|
2022-12-10 19:56:45 +01:00
|
|
|
<div class="msjugskd _block">
|
2022-12-07 05:12:44 +01:00
|
|
|
<i class="ph-airplane-takeoff-bold ph-lg" style="margin-right: 8px;"/>
|
|
|
|
{{ i18n.ts.accountMoved }}
|
2022-12-10 19:56:45 +01:00
|
|
|
<MkMention class="link" :username="acct" :host="host"/>
|
2022-12-07 05:12:44 +01:00
|
|
|
</div>
|
2022-11-30 20:26:13 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-12-07 01:43:16 +01:00
|
|
|
import MkMention from './MkMention.vue';
|
2022-12-07 05:12:44 +01:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
|
|
|
defineProps<{
|
2022-11-30 20:26:13 +01:00
|
|
|
acct: string;
|
2022-12-07 01:43:16 +01:00
|
|
|
host: string;
|
2022-11-30 20:26:13 +01:00
|
|
|
}>();
|
|
|
|
</script>
|
|
|
|
|
2022-12-10 19:56:45 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.msjugskd {
|
2022-11-30 20:26:13 +01:00
|
|
|
padding: 16px;
|
2022-12-16 19:21:10 +01:00
|
|
|
font-size: 90%;
|
2022-12-10 19:56:45 +01:00
|
|
|
background: var(--infoWarnBg);
|
2022-12-16 19:21:10 +01:00
|
|
|
color: var(--infoWarnFg);
|
|
|
|
border-radius: var(--radius);
|
2022-12-07 05:12:44 +01:00
|
|
|
|
2022-11-30 20:26:13 +01:00
|
|
|
> .link {
|
|
|
|
margin-left: 4px;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|