WIP Update Nonpackaged Cart Items for Leah

This commit is contained in:
Bryan Mauger 2023-11-03 10:21:21 -04:00
parent 4d7f01d87e
commit 8cb06c096f

View file

@ -33,7 +33,7 @@
<!-- Nonpackaged Cart Items --> <!-- Nonpackaged Cart Items -->
<hr style="background: red" /> <hr style="background: red" />
<div v-for="(cartItem, i) in nonpackageCartItems" :key="i"> <div class="premium-appt-cart-item" v-for="(cartItem, i) in nonpackageCartItems" :key="i">
<span>{{ cartItem.name }}</span> <span>{{ cartItem.name }}</span>
<textLink <textLink
ref="removeLink" ref="removeLink"
@ -729,6 +729,17 @@ export default {
padding: 0; padding: 0;
} }
} }
// Custom order/wrap for nonpackaged Cart Items
.premium-appt-cart-item {
flex-wrap: wrap;
span {
display: flex;
justify-content: space-between;
}
a {
order: 3;
}
}
} }
.vin-toggle { .vin-toggle {
&:after { &:after {