CSR-1786 Fix multiple spacing issues in cart.
This commit is contained in:
parent
6ac87dbe32
commit
b860a45afd
3 changed files with 8 additions and 5 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="cart">
|
<div class="cart">
|
||||||
<div class="px-0">
|
<div class="px-0">
|
||||||
<div
|
<div
|
||||||
class="row vin-toggle flex align-items-center py-4"
|
class="row vin-toggle flex align-items-center pt-4"
|
||||||
:class="[isExpanded ? 'expanded' : '']"
|
:class="[isExpanded ? 'expanded' : '']"
|
||||||
@click="toggleIsExpanded()">
|
@click="toggleIsExpanded()">
|
||||||
<div class="col d-flex justify-content-between">
|
<div class="col d-flex justify-content-between">
|
||||||
|
|
@ -855,7 +855,7 @@ export default {
|
||||||
}
|
}
|
||||||
&.expanded + .price-table {
|
&.expanded + .price-table {
|
||||||
max-height: 650px;
|
max-height: 650px;
|
||||||
transition: all 350ms ease-in;
|
transition: all 150ms ease-in;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
<hr class="my-0" />
|
<hr class="my-0" />
|
||||||
|
|
||||||
<cart
|
<cart
|
||||||
class="mb-0"
|
|
||||||
:damage="damageInfo"
|
:damage="damageInfo"
|
||||||
:availableVaps="availableVaps"
|
:availableVaps="availableVaps"
|
||||||
:allowItemRemoval="true"
|
:allowItemRemoval="true"
|
||||||
|
|
@ -31,11 +30,12 @@
|
||||||
recyclingModalCmsWidgetName="RecycleModal" />
|
recyclingModalCmsWidgetName="RecycleModal" />
|
||||||
|
|
||||||
<promoModalQuestion
|
<promoModalQuestion
|
||||||
|
class="small mt-4"
|
||||||
v-model="lineItems"
|
v-model="lineItems"
|
||||||
:availableVaps="availableVaps"
|
:availableVaps="availableVaps"
|
||||||
modalWidgetName="PromoModalWidget" />
|
modalWidgetName="PromoModalWidget" />
|
||||||
|
|
||||||
<hr class="mb-5" />
|
<hr class="my-5" />
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<alert
|
<alert
|
||||||
|
|
@ -525,6 +525,9 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.cart {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
.no-pia-disclaimer {
|
.no-pia-disclaimer {
|
||||||
color: $gray-550;
|
color: $gray-550;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="promo-modal-question">
|
||||||
<textLink
|
<textLink
|
||||||
id="promoLinkPromptId"
|
id="promoLinkPromptId"
|
||||||
linkType="text"
|
linkType="text"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue