fixed gender input bug in dashboard

This commit is contained in:
Mamalizz-dev
2026-02-21 02:24:31 +03:30
parent 102148b693
commit 1344b39e56
2 changed files with 10 additions and 5 deletions
@@ -108,7 +108,7 @@ const parallaxStyle = computed(() => {
</div>
<div class="flex flex-col gap-1 px-2 items-start w-full text-black mt-4">
<span class="typo-sub-h-sm font-normal w-full truncate">
<span class="typo-sub-h-sm font-normal w-full line-clamp-2 leading-[175%]">
{{ title }}
</span>
<div class="flex flex-col w-full mt-1">
@@ -118,7 +118,11 @@ const parallaxStyle = computed(() => {
>
{{ price }}
</span>
<span v-if="priceAfter" class="whitespace-nowrap !font-bold">{{ priceAfter }}</span>
<span
v-if="priceAfter"
class="whitespace-nowrap !font-bold"
>{{ priceAfter }}</span
>
</div>
</div>
</div>