Skip to content

Commit

Permalink
feat: add outline to verified links closes #155
Browse files Browse the repository at this point in the history
  • Loading branch information
boehs authored and patak-dev committed Feb 3, 2023
1 parent 34949e0 commit 97964ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/account/AccountHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ const isNotifiedOnPost = $computed(() => !!relationship?.notifying)
<ContentRich :content="field.value" :emojis="account.emojis" />
</div>
</div>
<div v-if="iconFields.length" flex="~ wrap gap-4">
<div v-for="field in iconFields" :key="field.name" flex="~ gap-1" items-center>
<div v-if="iconFields.length" flex="~ wrap gap-2">
<div v-for="field in iconFields" :key="field.name" flex="~ gap-1" px1 items-center :class="`${field.verifiedAt ? 'border-1 rounded-full border-dark' : ''}`">
<CommonTooltip :content="getFieldIconTitle(field.name)">
<div text-secondary :class="getAccountFieldIcon(field.name)" :title="getFieldIconTitle(field.name)" />
</CommonTooltip>
Expand Down

0 comments on commit 97964ed

Please sign in to comment.