@asd20/ui 3.2.603 → 3.2.604
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/organisms/Asd20PageContent/index.vue +23 -2
- package/src/components/templates/Asd20WayfindingAlternateTemplate/index.vue +4 -9
- package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +4 -10
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +3 -3
- package/src/mixins/pageTemplateMixin.js +1 -1
package/package.json
CHANGED
|
@@ -127,6 +127,11 @@ export default {
|
|
|
127
127
|
background: var(--color__tertiary);
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
.asd20-messaging {
|
|
131
|
+
padding-bottom: space(1);
|
|
132
|
+
border-bottom: 10px solid var(--color__tertiary);
|
|
133
|
+
}
|
|
134
|
+
|
|
130
135
|
.asd20-messaging:not(:last-child) {
|
|
131
136
|
margin-bottom: space(2);
|
|
132
137
|
}
|
|
@@ -175,7 +180,7 @@ export default {
|
|
|
175
180
|
.primary-messaging-section,
|
|
176
181
|
.secondary-messaging-section {
|
|
177
182
|
display: block;
|
|
178
|
-
padding: space(2) space(
|
|
183
|
+
padding: space(2) space(2) space(2) space(2);
|
|
179
184
|
&::v-deep > * {
|
|
180
185
|
// flex: 1 1 var(--minimum-column-width);
|
|
181
186
|
// margin: space(1) !important;
|
|
@@ -199,7 +204,7 @@ export default {
|
|
|
199
204
|
.asd20-page-content {
|
|
200
205
|
.primary-messaging-section,
|
|
201
206
|
.secondary-messaging-section {
|
|
202
|
-
padding: space(2) space(
|
|
207
|
+
padding: space(2) space(2) space(2) space(2);
|
|
203
208
|
&::v-deep > * {
|
|
204
209
|
// flex: 1 1 var(--minimum-column-width);
|
|
205
210
|
margin: space(1) !important;
|
|
@@ -243,4 +248,20 @@ export default {
|
|
|
243
248
|
}
|
|
244
249
|
}
|
|
245
250
|
}
|
|
251
|
+
|
|
252
|
+
@media (min-width: 1790px) {
|
|
253
|
+
.asd20-page-content {
|
|
254
|
+
&--grid {
|
|
255
|
+
.primary-messaging-section,
|
|
256
|
+
.secondary-messaging-section {
|
|
257
|
+
|
|
258
|
+
&::v-deep > * {
|
|
259
|
+
flex: 1 1 var(--minimum-column-width);
|
|
260
|
+
margin: var(--gutter) !important;
|
|
261
|
+
max-width: 30%;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
246
267
|
</style>
|
|
@@ -179,12 +179,7 @@ export default {
|
|
|
179
179
|
},
|
|
180
180
|
primaryMessage() {
|
|
181
181
|
const introMessage = this.primaryMessages.slice(0, 1)
|
|
182
|
-
if (
|
|
183
|
-
introMessage[0].bodyHtml === '' ||
|
|
184
|
-
null ||
|
|
185
|
-
introMessage[0].detailLink !== '' || null
|
|
186
|
-
)
|
|
187
|
-
return
|
|
182
|
+
if (introMessage[0].bodyHtml === '' || null) return
|
|
188
183
|
return introMessage
|
|
189
184
|
},
|
|
190
185
|
},
|
|
@@ -295,9 +290,9 @@ export default {
|
|
|
295
290
|
.asd20-page-content {
|
|
296
291
|
margin-top: space(0);
|
|
297
292
|
}
|
|
298
|
-
.intro-message {
|
|
299
|
-
|
|
300
|
-
}
|
|
293
|
+
// .intro-message {
|
|
294
|
+
// width: 90%;
|
|
295
|
+
// }
|
|
301
296
|
}
|
|
302
297
|
}
|
|
303
298
|
</style>
|
|
@@ -183,13 +183,7 @@ export default {
|
|
|
183
183
|
},
|
|
184
184
|
primaryMessage() {
|
|
185
185
|
const introMessage = this.primaryMessages.slice(0, 1)
|
|
186
|
-
if (
|
|
187
|
-
introMessage[0].bodyHtml === '' ||
|
|
188
|
-
null ||
|
|
189
|
-
introMessage[0].detailLink !== '' ||
|
|
190
|
-
null
|
|
191
|
-
)
|
|
192
|
-
return
|
|
186
|
+
if (introMessage[0].bodyHtml === '' || null) return
|
|
193
187
|
return introMessage
|
|
194
188
|
},
|
|
195
189
|
},
|
|
@@ -317,9 +311,9 @@ export default {
|
|
|
317
311
|
}
|
|
318
312
|
}
|
|
319
313
|
}
|
|
320
|
-
.intro-message {
|
|
321
|
-
|
|
322
|
-
}
|
|
314
|
+
// .intro-message {
|
|
315
|
+
// width: 90%;
|
|
316
|
+
// }
|
|
323
317
|
}
|
|
324
318
|
}
|
|
325
319
|
</style>
|
|
@@ -22,7 +22,7 @@ export default {
|
|
|
22
22
|
|
|
23
23
|
// Page content
|
|
24
24
|
messages: { type: Array, default: () => [] },
|
|
25
|
-
primaryMessageLimit: { type: Number, default:
|
|
25
|
+
primaryMessageLimit: { type: Number, default: 12 },
|
|
26
26
|
// factoids: { type: Array, default: () => [] },
|
|
27
27
|
websiteLogoProps: { type: Object, default: null },
|
|
28
28
|
|