fix: profile banner ellipsis

This commit is contained in:
puriphatt 2024-08-19 14:19:28 +07:00
parent 63200d3f8f
commit 57c1bdc867

View file

@ -161,8 +161,16 @@ const showOverlay = ref(false);
class="row justify-between full-height"
style="padding-left: 150px"
>
<div class="column">
<span class="text-bold q-pt-xs text-body1">{{ title }}</span>
<div class="col column">
<span
class="text-bold ellipsis q-pt-xs text-body1"
style="width: 90%"
>
{{ title }}
<q-tooltip anchor="bottom left" self="center left" :delay="300">
{{ title }}
</q-tooltip>
</span>
<span v-if="title" class="app-text-muted">{{ caption }}</span>
</div>