Skip to content

Commit

Permalink
fix(Product detail): avoid window bottom crop in tabs, reduce x paddi…
Browse files Browse the repository at this point in the history
…ng. ref #695
  • Loading branch information
raphodn committed Aug 14, 2024
1 parent 9592475 commit 8202a72
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/views/ProductDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,18 @@

<v-window v-model="currentDisplay">
<v-window-item value="list">
<v-container fluid>
<v-row class="mt-0">
<v-col v-for="price in productPriceList" :key="price" cols="12" sm="6" md="4">
<PriceCard :price="price" :product="product" :hideProductImage="true" :hideProductTitle="true" :hideProductDetails="productIsCategory ? false : true" elevation="1" height="100%" />
</v-col>
</v-row>
</v-container>
<v-row class="mt-0 mb-1">
<v-col v-for="price in productPriceList" :key="price" cols="12" sm="6" md="4">
<PriceCard :price="price" :product="product" :hideProductImage="true" :hideProductTitle="true" :hideProductDetails="productIsCategory ? false : true" elevation="1" height="100%" />
</v-col>
</v-row>
</v-window-item>
<v-window-item value="map">
<v-container fluid style="height:400px">
<LeafletMap :locations="priceLocationList" />
</v-container>
<v-row class="mt-0 mb-1">
<v-col style="height:400px">
<LeafletMap :locations="priceLocationList" />
</v-col>
</v-row>
</v-window-item>
</v-window>

Expand Down

0 comments on commit 8202a72

Please sign in to comment.