diff options
Diffstat (limited to 'packages/client/src/components/remote-caution.vue')
| -rw-r--r-- | packages/client/src/components/remote-caution.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/remote-caution.vue b/packages/client/src/components/remote-caution.vue index aa623f0fb0..130a0249b6 100644 --- a/packages/client/src/components/remote-caution.vue +++ b/packages/client/src/components/remote-caution.vue @@ -1,5 +1,5 @@ <template> -<div class="jmgmzlwq _block"><i class="fas fa-exclamation-triangle" style="margin-right: 8px;"></i>{{ $ts.remoteUserCaution }}<a :href="href" rel="nofollow noopener" target="_blank">{{ $ts.showOnRemote }}</a></div> +<div class="jmgmzlwq _block"><i class="fas fa-exclamation-triangle" style="margin-right: 8px;"></i>{{ $ts.remoteUserCaution }}<a class="link" :href="href" rel="nofollow noopener" target="_blank">{{ $ts.showOnRemote }}</a></div> </template> <script lang="ts" setup> @@ -15,7 +15,7 @@ defineProps<{ background: var(--infoWarnBg); color: var(--infoWarnFg); - > a { + > .link { margin-left: 4px; color: var(--accent); } |