@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
|
@@ -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
|
-
|
|
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
|
|
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="
|
|
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
|
-
|
|
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
|
-
|
|
248
|
+
flex: 1;
|
|
249
|
+
// max-width: 50vw;
|
|
248
250
|
}
|
|
249
251
|
}
|
|
250
252
|
|