WIP get modal functional and setup recal modal in CMS.

This commit is contained in:
Bryan Mauger 2024-06-20 16:43:08 -04:00
parent 0ee1cda67e
commit 0180589800

View file

@ -1,7 +1,7 @@
<template>
<Form @submit="onSubmit" @invalid-submit="onInvalidSubmit" ref="theForm" v-slot="{ meta }">
<loadingModal notFullScreen ref="loadingModal" />
<div class="container-fluid">
<div class="container-fluid payment-method">
<div class="row justify-content-center">
<div class="col-md-6">
<funnelHeader cmsWidgetName="FunnelHeaderWidget" ref="funnelHeader" />
@ -704,6 +704,10 @@ export default {
};
</script>
<style>
</style>
<style lang="scss" scoped>
.checkbox-group {
align-items: start;
@ -723,4 +727,20 @@ export default {
color: $gray-550;
margin: 0;
}
.payment-method {
:deep(.modal-body) {
display: flex;
flex-direction: column;
h5 {
text-align: center;
order: 1;
}
p {
order: 3
}
img {
order: 2;
}
}
}
</style>