@asd20/ui 3.2.864 → 3.2.866
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/Asd20Messaging/index.vue +5 -1
- package/src/components/organisms/Asd20SiteMenu/index.vue +1 -1
- package/src/components/organisms/Asd20SiteSearch/index.vue +1 -1
- package/src/components/organisms/Asd20SwiperFeed/index.vue +13 -0
- package/src/components/templates/Asd20WayfindingImageTemplate/index.vue +1 -1
package/package.json
CHANGED
|
@@ -183,7 +183,9 @@ export default {
|
|
|
183
183
|
display: flex;
|
|
184
184
|
align-self: stretch;
|
|
185
185
|
padding: 0;
|
|
186
|
-
margin: 0;
|
|
186
|
+
margin: 0 0 space(0.5) 0;
|
|
187
|
+
border-top: 10px solid var(--color__accent);
|
|
188
|
+
padding-top: space(0.5);
|
|
187
189
|
& > img {
|
|
188
190
|
display: block;
|
|
189
191
|
width: 100%;
|
|
@@ -225,6 +227,8 @@ export default {
|
|
|
225
227
|
padding-top: 0.5rem;
|
|
226
228
|
padding-right: space(1);
|
|
227
229
|
margin: 0;
|
|
230
|
+
border-top: none;
|
|
231
|
+
padding-top: 0;
|
|
228
232
|
img {
|
|
229
233
|
width: 15vw;
|
|
230
234
|
height: 15vw;
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
<div class="feed-buttons">
|
|
40
40
|
<asd20-button
|
|
41
41
|
v-if="link && linkLabel && (cards.length >= 10 || cardType === 'Event')"
|
|
42
|
+
:class="hasProtectedContent ? 'secondary-button' : ''"
|
|
42
43
|
:label="linkLabel"
|
|
43
44
|
:link="link"
|
|
44
45
|
size="md"
|
|
@@ -58,6 +59,17 @@
|
|
|
58
59
|
transparent
|
|
59
60
|
centered
|
|
60
61
|
/>
|
|
62
|
+
<asd20-button
|
|
63
|
+
class="secondary-button"
|
|
64
|
+
v-if="hasProtectedContent"
|
|
65
|
+
label="CommTool Form"
|
|
66
|
+
link="https://forms.office.com/Pages/ResponsePage.aspx?id=zcp1lGYYyky2X9rtmQDNB4v4-GP2BIZNiOOgJzqryX5UM1dNUUoxM1ZUM01GSDlIS05OOTQ4SFBSSy4u"
|
|
67
|
+
size="md"
|
|
68
|
+
horizontal
|
|
69
|
+
bordered
|
|
70
|
+
transparent
|
|
71
|
+
centered
|
|
72
|
+
/>
|
|
61
73
|
</div>
|
|
62
74
|
</component>
|
|
63
75
|
</template>
|
|
@@ -195,6 +207,7 @@ export default {
|
|
|
195
207
|
.secondary-button {
|
|
196
208
|
font-size: 0.875rem !important;
|
|
197
209
|
margin-top: space(0.5);
|
|
210
|
+
width: 10rem;
|
|
198
211
|
}
|
|
199
212
|
}
|
|
200
213
|
@media (min-width: 768px) {
|