diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-08-31 00:24:33 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-08-31 00:24:33 +0900 |
| commit | 786b150ea75111b5f6102c256d5cfa42cb83d1fb (patch) | |
| tree | d552d0c371829d7ff027890d1036a80bb08517f7 /packages/client/src/components/remote-caution.vue | |
| parent | update deps (diff) | |
| download | misskey-786b150ea75111b5f6102c256d5cfa42cb83d1fb.tar.gz misskey-786b150ea75111b5f6102c256d5cfa42cb83d1fb.tar.bz2 misskey-786b150ea75111b5f6102c256d5cfa42cb83d1fb.zip | |
refactor(client): align filename to component name
Diffstat (limited to 'packages/client/src/components/remote-caution.vue')
| -rw-r--r-- | packages/client/src/components/remote-caution.vue | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/packages/client/src/components/remote-caution.vue b/packages/client/src/components/remote-caution.vue deleted file mode 100644 index e9461197ca..0000000000 --- a/packages/client/src/components/remote-caution.vue +++ /dev/null @@ -1,25 +0,0 @@ -<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> |