Merge branch 'develop' into feature/CSR-1392
This commit is contained in:
commit
571e0439fe
4 changed files with 15 additions and 9 deletions
|
|
@ -305,13 +305,15 @@ export default {
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.vehicle-damage {
|
.vehicle-damage {
|
||||||
@include media-breakpoint-up(md) {
|
.button-question {
|
||||||
.col-12 {
|
@include media-breakpoint-up(md) {
|
||||||
width: 66.66666667%;
|
.col-12 {
|
||||||
}
|
width: 66.66666667%;
|
||||||
.col {
|
}
|
||||||
width: 33.3333333%;
|
.col {
|
||||||
flex: 0 0 auto;
|
width: 33.3333333%;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
loaderColor="blue"
|
loaderColor="blue"
|
||||||
loaderPosition="center" />
|
loaderPosition="center" />
|
||||||
<div class="row form-test-error" id="date-of-month-error">
|
<div class="row form-test-error" id="date-of-month-error">
|
||||||
<ErrorMessage name="date-of-month" class="small mt-1"></ErrorMessage>
|
<ErrorMessage :name="customComponentId" class="small mt-1"></ErrorMessage>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button
|
||||||
v-if="calendarViewDirection === 'future' && !disableViewMoreDatesButton"
|
v-if="calendarViewDirection === 'future' && !disableViewMoreDatesButton"
|
||||||
|
|
|
||||||
|
|
@ -180,12 +180,16 @@ export default {
|
||||||
}
|
}
|
||||||
@include media-breakpoint-up(md) {
|
@include media-breakpoint-up(md) {
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
|
flex: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.modal-dialog-centered {
|
&.modal-dialog-centered {
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
|
@include media-breakpoint-up(md) {
|
||||||
|
align-items: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@ export default {
|
||||||
},
|
},
|
||||||
show() {
|
show() {
|
||||||
this.isActive = true;
|
this.isActive = true;
|
||||||
this.scrollToPageTop();
|
window.scrollTo({ top: 0, left: 0, behavior: "smooth" });
|
||||||
},
|
},
|
||||||
hide() {
|
hide() {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue