paricafe/packages/frontend/src/components/MkRemoteCaution.vue

28 lines
600 B
Vue
Raw Normal View History

2020-03-20 23:07:02 -05:00
<template>
2023-01-05 18:41:14 -06:00
<div class="jmgmzlwq"><i class="ti ti-alert-triangle" 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-20 23:07:02 -05:00
</template>
2022-01-06 08:10:47 -06:00
<script lang="ts" setup>
2022-07-20 08:24:26 -05:00
import { i18n } from '@/i18n';
2022-01-06 08:10:47 -06:00
defineProps<{
href: string;
}>();
2020-03-20 23:07:02 -05:00
</script>
<style lang="scss" scoped>
2020-03-20 23:07:02 -05:00
.jmgmzlwq {
font-size: 0.8em;
padding: 16px;
2020-11-28 21:46:05 -06:00
background: var(--infoWarnBg);
color: var(--infoWarnFg);
2023-01-07 02:39:24 -06:00
border-radius: var(--radius);
overflow: clip;
2020-03-20 23:07:02 -05:00
> .link {
2020-03-20 23:07:02 -05:00
margin-left: 4px;
color: var(--accent);
}
}
</style>