fix: code badge & edit profile on drawer

This commit is contained in:
puriphatt 2024-06-27 08:33:30 +00:00
parent b24f785311
commit 259d7e224d
3 changed files with 30 additions and 3 deletions

View file

@ -111,11 +111,14 @@ function reset() {
<div class="col text-weight-bold text-center">
<text
v-if="badgeLabel"
class="badge-label text-caption text-grey-8"
class="badge-label badge text-caption q-px-sm q-mr-sm"
:class="badgeClass"
>
{{ badgeLabel }}
</text>
<text v-if="category" class="app-text-muted">{{ category }}</text>
<text v-if="category" class="app-text-muted q-mr-sm">
{{ category }}
</text>
{{ title }}
<text
@ -247,4 +250,11 @@ function reset() {
display: inline-block;
text-wrap: nowrap;
}
.badge {
display: inline-block;
border-radius: var(--radius-6);
background-color: var(--surface-2);
text-wrap: nowrap;
}
</style>