hippofish/packages/client/src/components/MkRemoteCaution.vue
2022-12-14 21:17:06 +01:00

25 lines
492 B
Vue

<template>
<div class="jmgmzlwq _block">{{ i18n.ts.remoteUserCaution }}<a class="link" :href="href" rel="nofollow noopener" target="_blank">{{ i18n.ts.showOnRemote }}</a></div>
</template>
<script lang="ts" setup>
import { i18n } from '@/i18n';
defineProps<{
href: string;
}>();
</script>
<style lang="scss" scoped>
.jmgmzlwq {
padding: 16px;
background: var(--infoRemoteBg);
color: var(--fg);
font-size: 0.85rem;
> .link {
margin-left: 4px;
color: var(--accent);
}
}
</style>