project-booster-vue 8.126.2 → 8.126.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</m-flex>
|
|
32
32
|
</div>
|
|
33
33
|
<!-- Duplicated wrapper to reset flex formattong context to block formatting context to allow margin to collapse -->
|
|
34
|
-
<div style="max-width: 100%">
|
|
34
|
+
<div style="height: 100%; max-width: 100%">
|
|
35
35
|
<!-- Break formatting to benefit :empty CSS selector -->
|
|
36
36
|
<!-- eslint-disable -->
|
|
37
37
|
<!-- prettier-ignore -->
|
|
@@ -386,6 +386,7 @@ $responsive-breakpoint: 's';
|
|
|
386
386
|
}
|
|
387
387
|
|
|
388
388
|
&__container {
|
|
389
|
+
height: 100%;
|
|
389
390
|
width: 100%;
|
|
390
391
|
}
|
|
391
392
|
|
|
@@ -426,6 +427,7 @@ $responsive-breakpoint: 's';
|
|
|
426
427
|
|
|
427
428
|
&__items-container {
|
|
428
429
|
display: block;
|
|
430
|
+
height: 100%;
|
|
429
431
|
margin: $mu150 $mu100;
|
|
430
432
|
|
|
431
433
|
@include set-from-screen($responsive-breakpoint) {
|
|
@@ -497,6 +499,7 @@ $responsive-breakpoint: 's';
|
|
|
497
499
|
@include set-font-scale('04', 'l');
|
|
498
500
|
|
|
499
501
|
color: $color-grey-600;
|
|
502
|
+
height: 100%;
|
|
500
503
|
hyphens: auto;
|
|
501
504
|
margin: $mu050 0 $mu100;
|
|
502
505
|
max-width: 100%;
|
|
@@ -646,9 +646,12 @@ export default {
|
|
|
646
646
|
this.displayDialog = true;
|
|
647
647
|
this.displayVideo = true;
|
|
648
648
|
this.$store.dispatch('sendEventToBus', {
|
|
649
|
-
code: '
|
|
649
|
+
code: 'VIDEO-CLICKED',
|
|
650
650
|
payload: {
|
|
651
|
-
context:
|
|
651
|
+
context: {
|
|
652
|
+
origin: origin,
|
|
653
|
+
questionId: this.stepName,
|
|
654
|
+
},
|
|
652
655
|
},
|
|
653
656
|
});
|
|
654
657
|
},
|