2020-03-21 05:07:02 +01:00
|
|
|
<template>
|
2022-11-07 03:30:26 +01:00
|
|
|
<div class="jmgmzlwq _block"><i class="ph-warning-bold" style="margin-right: 8px;"></i>{{ i18n.ts.remoteUserCaution }}<a class="link" :href="href" rel="nofollow noopener" target="_blank">{{ i18n.ts.showOnRemote }}</a></div>
|
2020-03-21 05:07:02 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-06 15:10:47 +01:00
|
|
|
<script lang="ts" setup>
|
2022-07-20 15:24:26 +02:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
2022-01-06 15:10:47 +01:00
|
|
|
defineProps<{
|
|
|
|
href: string;
|
|
|
|
}>();
|
2020-03-21 05:07:02 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.jmgmzlwq {
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 16px;
|
2020-11-29 04:46:05 +01:00
|
|
|
background: var(--infoWarnBg);
|
|
|
|
color: var(--infoWarnFg);
|
2020-03-21 05:07:02 +01:00
|
|
|
|
2022-07-05 16:13:28 +02:00
|
|
|
> .link {
|
2020-03-21 05:07:02 +01:00
|
|
|
margin-left: 4px;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|