Merge remote-tracking branch 'origin/feature/CASH-1182' into feature/CASH-1182

This commit is contained in:
Johnny shultz 2025-08-01 13:15:05 -04:00
commit 1c733b723c
2 changed files with 34 additions and 1 deletions

View file

@ -9,7 +9,9 @@
tabindex="-1"
aria-labelledby="ModalComponentLabel"
@keypress.enter="onEnter"
aria-hidden="true">
aria-hidden="true"
@click.self="closeModal">
<!--Close modal when clicking other than close button-->
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header mb-0 mt-6">

View file

@ -922,6 +922,37 @@ export default {
width: -moz-available;
}
}
//Save email modal ONLY centered on screen for quote page only
.save-progress-popup-question {
:deep(.modal-component) {
.modal-dialog {
max-width: 767px;
margin: 0 auto;
@include media-breakpoint-up(md) {
width: 50%;
max-width: 600px;
top: 0;
right: 0;
left: 0;
transform: none;
}
.modal-content {
@include media-breakpoint-up(md) {
box-shadow: none;
border-radius: 0;
margin: auto;
height: auto;
border-radius: 0.5rem;
}
}
}
.modal-footer {
button.btn.skip-button {
margin: 0 auto;
}
}
}
}
}
.quote-page.show-save-progress-popup .row.justify-content-center {
display: none;