@asd20/ui 3.2.830 → 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.830",
8
+ "version": "3.2.832",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -300,9 +300,9 @@ export default {
300
300
  .right {
301
301
  display: flex;
302
302
  align-items: center;
303
- & > *:not(:first-child) {
304
- margin-left: space(0.25);
305
- }
303
+ // & > *:not(:first-child) {
304
+ // margin-left: space(0.25);
305
+ // }
306
306
  }
307
307
  .print-button {
308
308
  padding: 0.375rem 0.375rem;
@@ -574,6 +574,13 @@ export default {
574
574
  // }
575
575
  display: none;
576
576
  }
577
+ &__tools {
578
+ .right {
579
+ & > *:not(:first-child) {
580
+ margin-left: space(0.25);
581
+ }
582
+ }
583
+ }
577
584
  h1 {
578
585
  @include asd20-font(
579
586
  2.5,
@@ -320,9 +320,6 @@ export default {
320
320
  .right {
321
321
  display: flex;
322
322
  align-items: center;
323
- & > *:not(:first-child) {
324
- margin-left: space(0.25);
325
- }
326
323
  }
327
324
  .print-button {
328
325
  padding: 0.375rem 0.375rem;
@@ -554,6 +551,13 @@ export default {
554
551
  bottom: 0;
555
552
  }
556
553
  }
554
+ &__tools {
555
+ .right {
556
+ & > *:not(:first-child) {
557
+ margin-left: space(0.25);
558
+ }
559
+ }
560
+ }
557
561
  }
558
562
  }
559
563
 
@@ -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