@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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.603",
8
+ "version": "3.2.604",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -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(1) space(2) space(2);
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(1) space(2) space(2);
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
- width: 90%;
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
- width: 90%;
322
- }
314
+ // .intro-message {
315
+ // width: 90%;
316
+ // }
323
317
  }
324
318
  }
325
319
  </style>
@@ -273,9 +273,9 @@ export default {
273
273
  .asd20-page-content {
274
274
  margin-top: space(0);
275
275
  }
276
- .intro-message {
277
- width: 90%;
278
- }
276
+ // .intro-message {
277
+ // width: 90%;
278
+ // }
279
279
  }
280
280
  }
281
281
  </style>
@@ -22,7 +22,7 @@ export default {
22
22
 
23
23
  // Page content
24
24
  messages: { type: Array, default: () => [] },
25
- primaryMessageLimit: { type: Number, default: 3 },
25
+ primaryMessageLimit: { type: Number, default: 12 },
26
26
  // factoids: { type: Array, default: () => [] },
27
27
  websiteLogoProps: { type: Object, default: null },
28
28