@asd20/ui 3.2.429 → 3.2.430
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
|
@@ -75,17 +75,19 @@
|
|
|
75
75
|
:announcements="announcements"
|
|
76
76
|
:announcements-feed-props="announcementsFeedProps"
|
|
77
77
|
@announcements-in-view="$emit('announcements-in-view')"
|
|
78
|
-
:stories="stories"
|
|
79
|
-
:stories-feed-props="storiesFeedProps"
|
|
80
|
-
@stories-in-view="$emit('stories-in-view')"
|
|
81
|
-
:events="events"
|
|
82
|
-
:events-feed-props="eventsFeedProps"
|
|
83
|
-
@events-in-view="$emit('events-in-view')"
|
|
84
78
|
></asd20-feeds-section>
|
|
85
79
|
</template>
|
|
86
80
|
|
|
87
81
|
<slot></slot>
|
|
88
82
|
</asd20-page-content>
|
|
83
|
+
<asd20-feeds-section
|
|
84
|
+
:stories="stories"
|
|
85
|
+
:stories-feed-props="storiesFeedProps"
|
|
86
|
+
@stories-in-view="$emit('stories-in-view')"
|
|
87
|
+
:events="events"
|
|
88
|
+
:events-feed-props="eventsFeedProps"
|
|
89
|
+
@events-in-view="$emit('events-in-view')"
|
|
90
|
+
></asd20-feeds-section>
|
|
89
91
|
|
|
90
92
|
<!-- Bottom Widgets -->
|
|
91
93
|
<asd20-widgets-section
|
|
@@ -213,7 +215,7 @@ export default {
|
|
|
213
215
|
margin-bottom: space(1);
|
|
214
216
|
}
|
|
215
217
|
.asd20-feeds-section {
|
|
216
|
-
margin-top: space(
|
|
218
|
+
margin-top: space(2);
|
|
217
219
|
.asd20-swiper-feed:first-child {
|
|
218
220
|
padding-top: space(2);
|
|
219
221
|
padding-bottom: space(1);
|
|
@@ -230,6 +232,23 @@ export default {
|
|
|
230
232
|
}
|
|
231
233
|
}
|
|
232
234
|
}
|
|
235
|
+
.asd20-feeds-section {
|
|
236
|
+
margin-top: space(1);
|
|
237
|
+
.asd20-swiper-feed:first-child {
|
|
238
|
+
padding-top: space(2);
|
|
239
|
+
padding-bottom: space(1);
|
|
240
|
+
&::after {
|
|
241
|
+
top: space(1);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
.asd20-swiper-feed:last-child {
|
|
245
|
+
// margin-top: space(-1);
|
|
246
|
+
padding-bottom: space(2);
|
|
247
|
+
&::after {
|
|
248
|
+
bottom: space(1);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
233
252
|
}
|
|
234
253
|
|
|
235
254
|
@media (min-width: 1024px) {
|