Merge branch 'release/2025.04.24' into CASH-510-QA-UI-FIXES

This commit is contained in:
bmauger 2025-04-15 14:13:19 -04:00 committed by GitHub
commit 86a68df3d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -78,7 +78,7 @@
<span>in 4 interest-free payments</span> <span>in 4 interest-free payments</span>
<div> <div>
or or
<span v-html="this.buttonAuxillaryCopy"></span> <span v-html="truncatedSinglePayment()"></span>
<span <span
class="strikethrough-price" class="strikethrough-price"
v-if="shouldDisplayStrikeThroughPrice" v-if="shouldDisplayStrikeThroughPrice"
@ -141,6 +141,9 @@ export default {
const decimalPrice = parseFloat(this.buttonAuxillaryCopy.replace("$", "")); const decimalPrice = parseFloat(this.buttonAuxillaryCopy.replace("$", ""));
return "$" + (decimalPrice / 4).toFixed(2); return "$" + (decimalPrice / 4).toFixed(2);
}, },
truncatedSinglePayment() {
return "$" + Math.trunc(this.buttonAuxillaryCopy.replace("$", ""));
},
}, },
}; };
</script> </script>

View file

@ -136,7 +136,7 @@ export default {
color: $white; color: $white;
background: linear-gradient(84.45deg, #125b7e 0%, #3b8fb8 100%); background: linear-gradient(84.45deg, #125b7e 0%, #3b8fb8 100%);
border-radius: 0.5rem; border-radius: 0.5rem;
z-index: 5; z-index: 2;
} }
&:checked:focus + .list-button-horizontal-content { &:checked:focus + .list-button-horizontal-content {