@asd20/ui 3.2.689 → 3.2.691
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/atoms/Asd20Tag/index.vue +1 -1
- package/src/components/molecules/Asd20Card/index.vue +3 -3
- package/src/components/organisms/Asd20SchoolHomepageVideoHeader/index.vue +1 -0
- package/src/components/organisms/Asd20SwiperFeed/index.vue +1 -2
- package/src/components/organisms/Asd20VideoHeader/index.vue +1 -0
package/package.json
CHANGED
|
@@ -347,7 +347,7 @@ export default {
|
|
|
347
347
|
opacity: 0.75;
|
|
348
348
|
}
|
|
349
349
|
.top {
|
|
350
|
-
margin-right: space(
|
|
350
|
+
margin-right: space(0.5);
|
|
351
351
|
text-align: right;
|
|
352
352
|
}
|
|
353
353
|
.top,
|
|
@@ -356,12 +356,12 @@ export default {
|
|
|
356
356
|
text-transform: uppercase;
|
|
357
357
|
// text-align: center;
|
|
358
358
|
font-weight: bold;
|
|
359
|
-
font-size: 0.
|
|
359
|
+
font-size: 0.75rem;
|
|
360
360
|
line-height: 1;
|
|
361
361
|
flex: 0 0 100px;
|
|
362
362
|
}
|
|
363
363
|
.bottom {
|
|
364
|
-
margin-left: space(
|
|
364
|
+
margin-left: space(0.5);
|
|
365
365
|
text-align: left;
|
|
366
366
|
}
|
|
367
367
|
.middle {
|
|
@@ -5,11 +5,10 @@
|
|
|
5
5
|
v-html="title"
|
|
6
6
|
></span>
|
|
7
7
|
</h2>
|
|
8
|
-
<asd20-swiper :options="swiperOptions" ref="swiper"
|
|
8
|
+
<asd20-swiper :options="swiperOptions" ref="swiper">
|
|
9
9
|
<template v-if="!loading" v-slot:default="props">
|
|
10
10
|
<div class="swiper-slide" v-for="(card, index) in cards" :key="index">
|
|
11
11
|
<asd20-card
|
|
12
|
-
role="article"
|
|
13
12
|
v-bind="card"
|
|
14
13
|
@click.native="$emit('select', card)"
|
|
15
14
|
@keydown.tab.exact.native="nextCard"
|