@asd20/ui 3.2.831 → 3.2.832

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.831",
8
+ "version": "3.2.832",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -1,14 +1,6 @@
1
1
  <template>
2
2
  <section class="asd20-widgets-section">
3
3
  <slot name="before" />
4
- <asd20-link-list
5
- v-if="relatedLinks.length > 5"
6
- class="related-links-wide"
7
- :links="relatedLinks"
8
- v-bind="relatedLinksProps"
9
- :multi-column="full"
10
- max-height="1500px"
11
- />
12
4
 
13
5
  <div class="widgets-wrapper">
14
6
  <asd20-department-contact-card
@@ -25,19 +17,28 @@
25
17
  max-height="400px"
26
18
  />
27
19
  <asd20-link-list
28
- class="relatedPages"
29
20
  v-if="relatedPages"
21
+ class="relatedPages"
30
22
  :links="relatedPages"
31
23
  v-bind="relatedPagesProps"
32
- max-height="400px"
24
+ :multi-column="full"
25
+ max-height="100%"
33
26
  />
27
+ <!-- <asd20-link-list
28
+ v-if="relatedLinks.length > 5"
29
+ class="related-links-wide"
30
+ :links="relatedLinks"
31
+ v-bind="relatedLinksProps"
32
+ :multi-column="full"
33
+ max-height="1500px"
34
+ /> -->
34
35
  <asd20-link-list
35
- v-if="relatedLinks.length <= 5"
36
+ v-if="relatedLinks"
36
37
  class="relatedLinks"
37
38
  :links="relatedLinks"
38
39
  v-bind="relatedLinksProps"
39
40
  :multi-column="full"
40
- max-height="400px"
41
+ max-height="100%"
41
42
  />
42
43
 
43
44
  <!-- <intersect v-if="eventsFeedProps" @enter="$emit('events-in-view')">
@@ -238,13 +238,15 @@ export default {
238
238
  align-items: stretch;
239
239
  flex-wrap: wrap;
240
240
  .asd20-widgets-section {
241
- flex-basis: 30%;
242
- padding: space(2) space(2) 0 0;
241
+ // flex-basis: 30%;
242
+ flex: 0 0 30%;
243
+ padding: space(1) space(2) space(2) space(1);
243
244
  background: none;
244
245
  }
245
246
  .primary-messaging-section {
246
247
  display: block;
247
- max-width: 50vw;
248
+ flex: 1;
249
+ // max-width: 50vw;
248
250
  }
249
251
  }
250
252