@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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.487",
8
+ "version": "3.2.489",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -22,7 +22,10 @@
22
22
  :icon="modalIcon"
23
23
  >
24
24
  <asd20-viewport scrollable>
25
- <asd20-list-item class="district-link">
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() {
@@ -11,6 +11,7 @@
11
11
  :itemsByCategory="orgItemsByCategory"
12
12
  :modalLabel="modalLabel"
13
13
  :reversed="reversed"
14
+ :organization="organization"
14
15
  >
15
16
  <asd20-district-logo
16
17
  v-if="organization.title === 'Academy District 20'"
@@ -240,7 +240,7 @@ export default {
240
240
 
241
241
  &__top {
242
242
  padding: 0;
243
- z-index: 3;
243
+ z-index: 101;
244
244
  position: absolute;
245
245
  margin: space(2) space(1) space(2) space(2);
246
246
  width: 95%;
@@ -41,6 +41,8 @@
41
41
  reversed
42
42
  ></asd20-organization-picker>
43
43
  </client-only>
44
+ <!-- </template>
45
+ <template slot="top"> -->
44
46
  <div class="notification-wrapper">
45
47
  <client-only>
46
48
  <asd20-notification-group
@@ -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+30),
132
- .asd20-messaging li:first-child:nth-last-child(n+30) ~ li {
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;