@asd20/ui 3.2.459 → 3.2.460
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/Asd20FactoidsSection/index.vue +1 -1
- package/src/components/organisms/Asd20PageContent/index.vue +1 -1
- package/src/components/organisms/Asd20PeopleList/index.vue +8 -2
- package/src/components/organisms/Asd20WidgetsSection/index.vue +2 -0
- package/src/components/templates/Asd20ArticleListTemplate/index.vue +2 -2
- package/src/components/templates/Asd20ArticleTemplate/index.vue +2 -2
- package/src/components/templates/Asd20DetailAlternateTemplate/index.vue +2 -2
- package/src/components/templates/Asd20DetailImageTemplate/index.vue +2 -2
- package/src/components/templates/Asd20DetailTemplate/index.vue +2 -2
- package/src/components/templates/Asd20GroupFeatureTemplate/index.vue +5 -5
- package/src/components/templates/Asd20ProfileTemplate/index.vue +2 -2
- package/src/components/templates/Asd20SalaryCalculatorTemplate/index.vue +2 -2
- package/src/data/page-queries/sublanding-page-query-result.json +2622 -2544
- package/src/mixins/mockPageMixin.js +1 -1
- package/src/mixins/pageTemplateMixin.js +13 -9
package/package.json
CHANGED
|
@@ -173,7 +173,7 @@ export default {
|
|
|
173
173
|
}
|
|
174
174
|
.primary-messaging-section,
|
|
175
175
|
.secondary-messaging-section {
|
|
176
|
-
padding: space(2) space(
|
|
176
|
+
padding: space(2) space(1) space(2) space(2);
|
|
177
177
|
&::v-deep > * {
|
|
178
178
|
// flex: 1 1 var(--minimum-column-width);
|
|
179
179
|
margin: space(1) !important;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
<asd20-list
|
|
2
|
+
<div>
|
|
3
|
+
<asd20-list
|
|
4
|
+
class="asd20-person-list"
|
|
5
|
+
v-bind="$attrs"
|
|
6
|
+
:headline="headline || title"
|
|
7
|
+
:icon="icon"
|
|
8
|
+
:column-width="640"
|
|
9
|
+
>
|
|
4
10
|
<asd20-list-item
|
|
5
11
|
v-for="(person, index) in mappedPeople"
|
|
6
12
|
:key="index"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="asd20-template-
|
|
2
|
+
<div class="asd20-template-group-feature">
|
|
3
3
|
<!-- Skip Nav -->
|
|
4
4
|
<asd20-skip-to />
|
|
5
5
|
|
|
@@ -219,7 +219,7 @@ export default {
|
|
|
219
219
|
@import '../../../design/_print.scss';
|
|
220
220
|
@import '../../../design/tokens.css';
|
|
221
221
|
|
|
222
|
-
.asd20-template-
|
|
222
|
+
.asd20-template-group-feature {
|
|
223
223
|
@include typography;
|
|
224
224
|
@include template;
|
|
225
225
|
display: flex;
|
|
@@ -231,7 +231,7 @@ export default {
|
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
@media (min-width: 1024px) {
|
|
234
|
-
.asd20-template-
|
|
234
|
+
.asd20-template-group-feature {
|
|
235
235
|
@include template-desktop;
|
|
236
236
|
margin-left: space(3);
|
|
237
237
|
margin-top: 0;
|
|
@@ -246,8 +246,8 @@ export default {
|
|
|
246
246
|
align-items: stretch;
|
|
247
247
|
flex-wrap: wrap;
|
|
248
248
|
.asd20-widgets-section {
|
|
249
|
-
flex-basis:
|
|
250
|
-
padding: space(2) space(
|
|
249
|
+
flex-basis: 30%;
|
|
250
|
+
padding: space(2) space(2) 0 0;
|
|
251
251
|
background: none;
|
|
252
252
|
}
|
|
253
253
|
}
|