CASH-1048 center modal on quote page.
This commit is contained in:
parent
e85af17fc7
commit
385b7e747f
2 changed files with 33 additions and 1 deletions
|
|
@ -9,7 +9,8 @@
|
|||
tabindex="-1"
|
||||
aria-labelledby="ModalComponentLabel"
|
||||
@keypress.enter="onEnter"
|
||||
aria-hidden="true">
|
||||
aria-hidden="true"
|
||||
@click.self="closeModal">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header mb-0 mt-6">
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue