WIP Update Nonpackaged Cart Items for Leah
This commit is contained in:
parent
4d7f01d87e
commit
8cb06c096f
1 changed files with 15 additions and 4 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue