project-booster-vue 9.63.3 → 9.63.4
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 +1 -1
- package/src/components/rework/alert/MPbAlert.vue +31 -10
- package/src/components/rework/exit-options/MPbExitOptions.vue +2 -1
- package/src/components/rework/question/configurations-import/MPbConfigurationsImport.vue +17 -5
- package/src/components/rework/question/upload-document/MPbUploadDocument.vue +1 -0
package/package.json
CHANGED
|
@@ -128,9 +128,17 @@ const callAction = (action: PayloadAction) => {
|
|
|
128
128
|
@import '../styles/global.scss';
|
|
129
129
|
@import 'components/_c.card';
|
|
130
130
|
|
|
131
|
+
$responsive-breakpoint: 'm';
|
|
132
|
+
|
|
131
133
|
.m-pb-alert {
|
|
132
|
-
width:
|
|
133
|
-
margin: $mu200 auto
|
|
134
|
+
width: calc(100% - $mu250);
|
|
135
|
+
margin: $mu200 auto $mu250 auto;
|
|
136
|
+
padding: 0 $mu125;
|
|
137
|
+
|
|
138
|
+
@include set-from-screen($responsive-breakpoint) {
|
|
139
|
+
width: 719px;
|
|
140
|
+
padding: 0;
|
|
141
|
+
}
|
|
134
142
|
|
|
135
143
|
&__buttons {
|
|
136
144
|
display: flex;
|
|
@@ -171,16 +179,29 @@ const callAction = (action: PayloadAction) => {
|
|
|
171
179
|
}
|
|
172
180
|
|
|
173
181
|
&__content {
|
|
174
|
-
|
|
175
|
-
max-width: 50%;
|
|
176
|
-
width: 50%;
|
|
182
|
+
flex-direction: column;
|
|
177
183
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
184
|
+
@include set-from-screen($responsive-breakpoint) {
|
|
185
|
+
flex-direction: row;
|
|
186
|
+
}
|
|
181
187
|
|
|
182
|
-
|
|
183
|
-
|
|
188
|
+
&__card {
|
|
189
|
+
max-width: 100%;
|
|
190
|
+
width: 100%;
|
|
191
|
+
margin-bottom: $mu100;
|
|
192
|
+
|
|
193
|
+
@include set-from-screen($responsive-breakpoint) {
|
|
194
|
+
max-width: 50%;
|
|
195
|
+
width: 50%;
|
|
196
|
+
margin-bottom: 0;
|
|
197
|
+
|
|
198
|
+
&:first-child {
|
|
199
|
+
margin-left: $mu050;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&:last-child {
|
|
203
|
+
margin-left: $mu050;
|
|
204
|
+
}
|
|
184
205
|
}
|
|
185
206
|
}
|
|
186
207
|
}
|
|
@@ -143,8 +143,9 @@ const isValidCondition = (conditions: any) => {
|
|
|
143
143
|
$responsive-breakpoint: 'm';
|
|
144
144
|
|
|
145
145
|
.m-pb-exit-options {
|
|
146
|
-
width: 100
|
|
146
|
+
width: calc(100% - $mu250);
|
|
147
147
|
margin: 4rem auto;
|
|
148
|
+
padding: 0 $mu125;
|
|
148
149
|
|
|
149
150
|
@include set-from-screen($responsive-breakpoint) {
|
|
150
151
|
width: 724px;
|
|
@@ -353,10 +353,10 @@ $answers-apparition-duration: '0.5s';
|
|
|
353
353
|
@include set-font-scale('07', 's');
|
|
354
354
|
|
|
355
355
|
color: $color-grey-900;
|
|
356
|
-
width: 100
|
|
356
|
+
width: calc(100% - $mu125);
|
|
357
357
|
|
|
358
358
|
&-container {
|
|
359
|
-
padding:
|
|
359
|
+
padding: $mu200 $mu125 $mu100 $mu125;
|
|
360
360
|
|
|
361
361
|
@include set-from-screen($responsive-breakpoint) {
|
|
362
362
|
padding: $mu250 $mu100 $mu100 $mu100;
|
|
@@ -381,8 +381,12 @@ $answers-apparition-duration: '0.5s';
|
|
|
381
381
|
&__answers-container {
|
|
382
382
|
margin: 0 auto;
|
|
383
383
|
max-width: 100%;
|
|
384
|
-
padding: 0;
|
|
385
384
|
width: 100%;
|
|
385
|
+
padding: 0 $mu100 $mu100 $mu100;
|
|
386
|
+
|
|
387
|
+
@include set-from-screen($responsive-breakpoint) {
|
|
388
|
+
padding: 0;
|
|
389
|
+
}
|
|
386
390
|
|
|
387
391
|
&-flexy {
|
|
388
392
|
width: 100%;
|
|
@@ -421,11 +425,19 @@ $answers-apparition-duration: '0.5s';
|
|
|
421
425
|
}
|
|
422
426
|
|
|
423
427
|
&__redirect-link {
|
|
424
|
-
margin: $mu100 $
|
|
428
|
+
margin: $mu100 $mu050 0 $mu050;
|
|
429
|
+
|
|
430
|
+
@include set-from-screen($responsive-breakpoint) {
|
|
431
|
+
margin: $mu100 $mu100 0 $mu100;
|
|
432
|
+
}
|
|
425
433
|
}
|
|
426
434
|
|
|
427
435
|
&__buttons {
|
|
428
|
-
margin: $mu150 $
|
|
436
|
+
margin: $mu150 $mu050 0 $mu050;
|
|
437
|
+
|
|
438
|
+
@include set-from-screen($responsive-breakpoint) {
|
|
439
|
+
margin: $mu150 $mu100 0 $mu100;
|
|
440
|
+
}
|
|
429
441
|
|
|
430
442
|
&__button {
|
|
431
443
|
width: 50%;
|