Fix pickup text and icon

This commit is contained in:
marzban-dev
2026-05-16 18:44:55 +03:30
parent 10a92aeeed
commit 4d2d9d2ae8
@@ -16,15 +16,14 @@ const { data: product } = useGetProduct(id);
<div class="flex items-start gap-3"> <div class="flex items-start gap-3">
<div class="flex p-1 items-center justify-center rounded-full bg-success-500"> <div class="flex p-1 items-center justify-center rounded-full bg-success-500">
<Icon <Icon
name="ci:check" name="ci:bi-check"
class="size-4 **:stroke-white" class="size-4 **:fill-white"
/> />
</div> </div>
<div class="flex flex-col gap-1"> <div class="flex flex-col gap-1 ">
<span class="typo-label-sm whitespace-nowrap">{{ product?.customer_pickup_title }}</span> <span class="typo-label-sm whitespace-nowrap">{{ product?.customer_pickup_title }}</span>
<span class="typo-p-sm whitespace-nowrap">{{ product?.customer_pickup_description }}</span> <span class="typo-p-sm">{{ product?.customer_pickup_description }}</span>
</div> </div>
</div> </div>
<span class="typo-p-xs max-sm:hidden">فروشگاه هیملز</span>
</div> </div>
</template> </template>