refactor(client): align filename to component name

This commit is contained in:
syuilo 2022-08-31 00:24:33 +09:00
parent 47b2e56967
commit 786b150ea7
243 changed files with 390 additions and 386 deletions

View file

@ -0,0 +1,25 @@
<template>
<div class="jmgmzlwq _block"><i class="fas fa-exclamation-triangle" style="margin-right: 8px;"></i>{{ 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 {
font-size: 0.8em;
padding: 16px;
background: var(--infoWarnBg);
color: var(--infoWarnFg);
> .link {
margin-left: 4px;
color: var(--accent);
}
}
</style>