Skip to content

Commit

Permalink
Make cart items relative to make absolute usage easier (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade-GG authored Aug 27, 2024
1 parent 210703a commit 619d4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/cart/partials/products.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</tr>
</thead>
<tbody class="divide-y">
<tr v-for="(item, index) in cart.items" v-if="cart.items" class="flex flex-wrap gap-y-5 py-5 md:table-row md:*:p-5">
<tr v-for="(item, index) in cart.items" v-if="cart.items" class="relative flex flex-wrap gap-y-5 py-5 md:table-row md:*:p-5">
@include('rapidez-ct::cart.partials.product.image')
@include('rapidez-ct::cart.partials.product.description')
@include('rapidez-ct::cart.partials.product.price')
Expand Down

0 comments on commit 619d4b9

Please sign in to comment.