Fix padding bug
This commit is contained in:
@@ -9,7 +9,7 @@ const { selectedVariant } = inject("productVariant") as ProductVariantProvideTyp
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<section class="w-full container py-20 flex flex-col gap-y-[1.5rem]">
|
<section class="w-full container pt-20 flex flex-col gap-y-[1.5rem]">
|
||||||
<div class="w-full flex">
|
<div class="w-full flex">
|
||||||
<span class="text-black max-lg:hidden typo-h-4 mb-4"> جزئیات محصول </span>
|
<span class="text-black max-lg:hidden typo-h-4 mb-4"> جزئیات محصول </span>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -56,12 +56,15 @@ if (productResponse.isError) {
|
|||||||
<ProductHero />
|
<ProductHero />
|
||||||
<ProductVideo v-model:showChatButton="showChatButton" />
|
<ProductVideo v-model:showChatButton="showChatButton" />
|
||||||
<ProductDetails />
|
<ProductDetails />
|
||||||
<ProductsSlider
|
<div class="py-20">
|
||||||
title="محصولات مشابه"
|
<ProductsSlider
|
||||||
:products="product!.related_products"
|
title="محصولات مشابه"
|
||||||
iconImage="/img/simulare-products-section.gif"
|
:products="product!.related_products"
|
||||||
/>
|
iconImage="/img/simulare-products-section.gif"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<ProductComments :product="product!" />
|
<ProductComments :product="product!" />
|
||||||
|
|
||||||
<ChatButton :showChatButton="showChatButton" />
|
<ChatButton :showChatButton="showChatButton" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user