@asd20/ui 3.2.709 → 3.2.711
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/molecules/Asd20ListCategory.vue +1 -1
- package/src/components/organisms/Asd20VideoHeaderContent/index.vue +5 -5
- package/src/components/organisms/Asd20WidgetsSection/index.vue +9 -6
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +2 -2
- package/src/design/_template.scss +1 -1
package/package.json
CHANGED
|
@@ -113,11 +113,11 @@ export default {
|
|
|
113
113
|
@keyframes slide_down {
|
|
114
114
|
from {
|
|
115
115
|
opacity: 0;
|
|
116
|
-
bottom: space(2);
|
|
116
|
+
// bottom: space(2);
|
|
117
117
|
}
|
|
118
118
|
to {
|
|
119
119
|
opacity: 1;
|
|
120
|
-
botom: space(-0.74);
|
|
120
|
+
// botom: space(-0.74);
|
|
121
121
|
}
|
|
122
122
|
}
|
|
123
123
|
|
|
@@ -153,7 +153,7 @@ export default {
|
|
|
153
153
|
margin-left: space(3);
|
|
154
154
|
.asd20-messaging__content {
|
|
155
155
|
margin: 0;
|
|
156
|
-
animation: slide_left
|
|
156
|
+
animation: slide_left 1.5s ease-in-out 0.5s both;
|
|
157
157
|
}
|
|
158
158
|
.asd20-messaging__heading {
|
|
159
159
|
@include fluid-type($base-font-size * 1.5, $base-font-size * 2);
|
|
@@ -167,7 +167,7 @@ export default {
|
|
|
167
167
|
position: absolute;
|
|
168
168
|
width: 75%;
|
|
169
169
|
top: 0;
|
|
170
|
-
bottom: space(-0.74);
|
|
170
|
+
// bottom: space(-0.74);
|
|
171
171
|
left: 3.25rem;
|
|
172
172
|
height: 100%;
|
|
173
173
|
right: 0;
|
|
@@ -189,7 +189,7 @@ export default {
|
|
|
189
189
|
// );
|
|
190
190
|
border-left: 30px solid var(--website-homepage-header__accent);
|
|
191
191
|
// border-bottom: 20px solid var(--website-homepage-header__accent);
|
|
192
|
-
animation:
|
|
192
|
+
animation: slide_down 2.5s ease-in-out 0.5s both;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
&::v-deep .asd20-messaging__button-group {
|
|
@@ -124,7 +124,10 @@ export default {
|
|
|
124
124
|
|
|
125
125
|
.asd20-widgets-section {
|
|
126
126
|
&::v-deep .asd20-list__header {
|
|
127
|
-
border-bottom: 2px solid
|
|
127
|
+
border-bottom: 2px solid var(--website-icon__fill-color) !important;
|
|
128
|
+
}
|
|
129
|
+
&::v-deep .asd20-list-category {
|
|
130
|
+
border-bottom: 1px solid #d9d9d9 !important;
|
|
128
131
|
}
|
|
129
132
|
.related-links-wide {
|
|
130
133
|
margin-bottom: space(2);
|
|
@@ -179,11 +182,11 @@ export default {
|
|
|
179
182
|
}
|
|
180
183
|
}
|
|
181
184
|
|
|
182
|
-
.relatedDepartment,
|
|
183
|
-
.relatedPeople,
|
|
184
|
-
.relatedPages {
|
|
185
|
-
|
|
186
|
-
}
|
|
185
|
+
// .relatedDepartment,
|
|
186
|
+
// .relatedPeople,
|
|
187
|
+
// .relatedPages {
|
|
188
|
+
// max-width: 50vw;
|
|
189
|
+
// }
|
|
187
190
|
}
|
|
188
191
|
}
|
|
189
192
|
</style>
|
|
@@ -307,7 +307,7 @@ export default {
|
|
|
307
307
|
@keyframes slide_left {
|
|
308
308
|
from {
|
|
309
309
|
opacity: 0;
|
|
310
|
-
margin-left:
|
|
310
|
+
margin-left: 200px;
|
|
311
311
|
}
|
|
312
312
|
to {
|
|
313
313
|
opacity: 1;
|
|
@@ -355,7 +355,7 @@ export default {
|
|
|
355
355
|
position: absolute;
|
|
356
356
|
bottom: 20%;
|
|
357
357
|
transform: translate3d(0, calc(-70% * var(--scroll-progress)), 0);
|
|
358
|
-
animation: slide_left
|
|
358
|
+
animation: slide_left 1.5s ease-in-out 0.5s both;
|
|
359
359
|
.lead {
|
|
360
360
|
}
|
|
361
361
|
}
|