@asd20/ui 3.2.863 → 3.2.865
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/molecules/Asd20Picker/index.vue +2 -6
- package/src/components/organisms/Asd20SiteMenu/index.vue +1 -1
- package/src/components/organisms/Asd20SiteSearch/index.vue +2 -2
- 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;
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
windowed
|
|
22
22
|
:icon="modalIcon"
|
|
23
23
|
>
|
|
24
|
-
<asd20-viewport scrollable
|
|
24
|
+
<asd20-viewport scrollable>
|
|
25
25
|
<asd20-list-item
|
|
26
26
|
v-if="organization.title !== 'Academy District 20'"
|
|
27
27
|
class="district-link"
|
|
@@ -293,7 +293,6 @@ export default {
|
|
|
293
293
|
|
|
294
294
|
.asd20-picker__modal {
|
|
295
295
|
border-bottom: 2px solid rgba(235, 235, 235, 0.8);
|
|
296
|
-
|
|
297
296
|
.district-link {
|
|
298
297
|
margin-left: space(0.5) !important;
|
|
299
298
|
font-weight: bold;
|
|
@@ -306,9 +305,6 @@ export default {
|
|
|
306
305
|
}
|
|
307
306
|
}
|
|
308
307
|
height: min-content;
|
|
309
|
-
&::v-deep .arrow-wrapper {
|
|
310
|
-
display: none !important;
|
|
311
|
-
}
|
|
312
308
|
&::v-deep h2 {
|
|
313
309
|
font-size: 1.15rem;
|
|
314
310
|
margin: space(0.5) 0;
|
|
@@ -342,4 +338,4 @@ export default {
|
|
|
342
338
|
height: auto;
|
|
343
339
|
}
|
|
344
340
|
}
|
|
345
|
-
</style>
|
|
341
|
+
</style>
|
|
@@ -372,11 +372,11 @@ export default {
|
|
|
372
372
|
position: absolute;
|
|
373
373
|
left: 0;
|
|
374
374
|
top: 0;
|
|
375
|
-
right:
|
|
375
|
+
right: 55vw;
|
|
376
376
|
bottom: 0;
|
|
377
377
|
overflow: hidden;
|
|
378
378
|
background: white;
|
|
379
379
|
border-left: 1px solid var(--color__tertiary);
|
|
380
380
|
}
|
|
381
381
|
}
|
|
382
|
-
</style>
|
|
382
|
+
</style>
|