@asd20/ui 3.2.645 → 3.2.647
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
|
@@ -39,6 +39,7 @@ export default {
|
|
|
39
39
|
// background-position: bottom right !important;
|
|
40
40
|
// background-size: cover !important;
|
|
41
41
|
padding: space(3) space(1) space(1) space(1);
|
|
42
|
+
text-shadow: 2px 1px 5px black;
|
|
42
43
|
|
|
43
44
|
&::v-deep .asd20-messaging__heading {
|
|
44
45
|
@include fluid-type($base-font-size * 1.5, $base-font-size * 2);
|
|
@@ -69,7 +70,9 @@ export default {
|
|
|
69
70
|
width: 70vw;
|
|
70
71
|
margin: space(0.5) auto !important;
|
|
71
72
|
color: var(--website-homepage-header__secondary-button-foreground-color);
|
|
72
|
-
|
|
73
|
+
background: var(
|
|
74
|
+
--website-homepage-header__secondary-button-background-color
|
|
75
|
+
);
|
|
73
76
|
&:hover {
|
|
74
77
|
color: var(
|
|
75
78
|
--website-homepage-header__secondary-button-hover-foreground-color
|
|
@@ -113,10 +113,12 @@
|
|
|
113
113
|
icon="committee"
|
|
114
114
|
/>
|
|
115
115
|
<h4>
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
116
|
+
<b>
|
|
117
|
+
{{ organization.administrators[0].firstName }}
|
|
118
|
+
{{ organization.administrators[0].lastName }}
|
|
119
|
+
<br />
|
|
120
|
+
<small>Principal</small>
|
|
121
|
+
</b>
|
|
120
122
|
</h4>
|
|
121
123
|
|
|
122
124
|
<asd20-list>
|
|
@@ -163,6 +165,19 @@
|
|
|
163
165
|
/>
|
|
164
166
|
</asd20-list>
|
|
165
167
|
|
|
168
|
+
<asd20-list
|
|
169
|
+
v-if="organization.feederOrganizations.length > 0"
|
|
170
|
+
:items="
|
|
171
|
+
organization.feederOrganizations.map(l => ({
|
|
172
|
+
label: l,
|
|
173
|
+
condensed: true,
|
|
174
|
+
}))
|
|
175
|
+
"
|
|
176
|
+
class="asd20-school-details__feeder-schools"
|
|
177
|
+
headline="Feeder Schools"
|
|
178
|
+
icon="school"
|
|
179
|
+
/>
|
|
180
|
+
|
|
166
181
|
<asd20-list
|
|
167
182
|
v-if="organization.awardsHonors.length > 0"
|
|
168
183
|
:items="
|
|
@@ -182,14 +197,6 @@
|
|
|
182
197
|
headline="Awards & Honors"
|
|
183
198
|
/>
|
|
184
199
|
|
|
185
|
-
<asd20-list
|
|
186
|
-
v-if="organization.feederOrganizations.length > 0"
|
|
187
|
-
:items="organization.feederOrganizations.map(l => ({ label: l }))"
|
|
188
|
-
class="asd20-school-details__feeder-schools"
|
|
189
|
-
headline="Feeder Schools"
|
|
190
|
-
icon="school"
|
|
191
|
-
/>
|
|
192
|
-
|
|
193
200
|
<asd20-list
|
|
194
201
|
v-if="organization.uniqueOfferings.length > 0"
|
|
195
202
|
:items="
|