@asd20/ui 3.2.487 → 3.2.489
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/Asd20Picker/index.vue +8 -1
- package/src/components/organisms/Asd20OrganizationPicker/index.vue +1 -0
- package/src/components/organisms/Asd20VideoHeader/index.vue +1 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +2 -0
- package/src/design/_typography.scss +2 -2
package/package.json
CHANGED
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
:icon="modalIcon"
|
|
23
23
|
>
|
|
24
24
|
<asd20-viewport scrollable>
|
|
25
|
-
<asd20-list-item
|
|
25
|
+
<asd20-list-item
|
|
26
|
+
v-if="organization.title !== 'Academy District 20'"
|
|
27
|
+
class="district-link"
|
|
28
|
+
>
|
|
26
29
|
<a href="https://asd20.org">Academy District 20 Website</a>
|
|
27
30
|
</asd20-list-item>
|
|
28
31
|
<asd20-accordion :opened="true" label="Favorites">
|
|
@@ -133,6 +136,10 @@ export default {
|
|
|
133
136
|
type: Boolean,
|
|
134
137
|
default: false,
|
|
135
138
|
},
|
|
139
|
+
organization: {
|
|
140
|
+
type: Object,
|
|
141
|
+
default: null,
|
|
142
|
+
},
|
|
136
143
|
},
|
|
137
144
|
|
|
138
145
|
data() {
|
|
@@ -128,8 +128,8 @@
|
|
|
128
128
|
// split into up to 12 columns
|
|
129
129
|
// with a minimum width of 240px
|
|
130
130
|
// and ensure at least a 1rem space between columns
|
|
131
|
-
.asd20-messaging li:first-child:nth-last-child(n+
|
|
132
|
-
.asd20-messaging li:first-child:nth-last-child(n+
|
|
131
|
+
.asd20-messaging li:first-child:nth-last-child(n+35),
|
|
132
|
+
.asd20-messaging li:first-child:nth-last-child(n+35) ~ li {
|
|
133
133
|
width: clamp(160px, 100vw/12, 100%);
|
|
134
134
|
padding-right: 1rem;
|
|
135
135
|
float:left;
|