diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue
index aa1a47349..1d1bba2b4 100644
--- a/src/fmg-components/cart/cart.vue
+++ b/src/fmg-components/cart/cart.vue
@@ -5,10 +5,10 @@
class="row vin-toggle flex align-items-center pt-4"
:class="[isExpanded ? 'expanded' : '']"
@click="toggleIsExpanded()">
-
- {{ amountDueText }}{{ getFormattedAmount("", amountDue) }}
-
+
+ {{ amountDueText }}
+ {{ getFormattedAmount("", amountDue) }}
+
@@ -746,6 +746,7 @@ export default {
color: $gray;
}
.label {
+ color: $black;
font-weight: 500;
}
.amount-due {
@@ -755,6 +756,7 @@ export default {
max-height: 0;
transition: all 350ms ease-in;
overflow: hidden;
+ visibility: hidden;
div {
display: flex;
@@ -858,6 +860,10 @@ export default {
transition: all 150ms ease-in;
overflow: hidden;
padding-top: 1rem;
+ visibility: visible;
+ }
+ a {
+ text-decoration: none;
}
}
}