Fix the Verified alignment

This commit is contained in:
2025-04-22 15:59:00 -04:00
parent 22867b5765
commit 247b2b023c

View File

@@ -1,21 +1,19 @@
<template> <template>
<div v-show="brandingStore.value.verified"
class="text-blue m-4"
:title="t('verified')">
<icon-account-verified></icon-account-verified>
</div>
<div class="flex flex-col text-hOnPrimary"> <div class="flex flex-col text-hOnPrimary">
<span class="capitalize text-3xl"> <div class="flex items-center gap-2">
{{ brandingStore.value.name }} <span class="capitalize text-3xl">
</span> {{ brandingStore.value.name }}
</span>
<span class="capitalize text-lg"> <div v-show="brandingStore.value.verified"
{{ brandingStore.value.title }} class="text-blue mt-1"
:title="t('verified')">
<icon-account-verified></icon-account-verified>
</div>
</div>
<span class="capitalize text-lg">
{{ brandingStore.value.title }}
</span> </span>
</div> </div>
</template> </template>
<script setup> <script setup>