@asd20/ui 3.2.925 → 3.2.927
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/Asd20Logo/index.vue +8 -5
- package/src/components/organisms/Asd20PrimaryHeader/index.vue +1 -0
- package/src/components/organisms/Asd20SchoolHomepageHeader/index.vue +2 -1
- package/src/components/organisms/Asd20VideosSection/index.vue +2 -2
- package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
class="asd20-logo"
|
|
4
4
|
:class="classes"
|
|
5
5
|
:href="link"
|
|
6
|
-
:aria-label="
|
|
6
|
+
:aria-label="
|
|
7
|
+
tagline
|
|
8
|
+
? `${abbreviatedTitle} ${subtitle}, An Academy District 20 School`
|
|
9
|
+
: `${abbreviatedTitle} ${subtitle}`
|
|
10
|
+
"
|
|
7
11
|
>
|
|
8
12
|
<figure class="asd20-logo__image">
|
|
9
13
|
<img v-if="image" :src="image" alt="Our school logo." />
|
|
@@ -13,13 +17,12 @@
|
|
|
13
17
|
<small v-if="subtitle" class="asd20-logo__subtitle">
|
|
14
18
|
{{ subtitle }}
|
|
15
19
|
</small>
|
|
16
|
-
<
|
|
20
|
+
<span v-if="tagline" class="asd20-logo__tagline">
|
|
17
21
|
An Academy District 20 School
|
|
18
22
|
<!-- <hr />
|
|
19
23
|
<i>We educate and inspire students to thrive.</i> -->
|
|
20
|
-
</
|
|
24
|
+
</span>
|
|
21
25
|
</component>
|
|
22
|
-
|
|
23
26
|
</a>
|
|
24
27
|
</template>
|
|
25
28
|
|
|
@@ -142,7 +145,7 @@ export default {
|
|
|
142
145
|
&__tagline {
|
|
143
146
|
width: 100%;
|
|
144
147
|
color: var(--logo-subtitle-color, var(--color__secondary));
|
|
145
|
-
margin-top: space(0.
|
|
148
|
+
margin-top: space(0.5);
|
|
146
149
|
font-family: var(--website-typography__font-family-headlines);
|
|
147
150
|
font-weight: var(--website-typography__font-weight-body, normal);
|
|
148
151
|
font-size: 0.75rem;
|
|
@@ -105,6 +105,7 @@ export default {
|
|
|
105
105
|
background: var(--website-homepage-header__background-color)
|
|
106
106
|
var(--website-homepage-header__background-style);
|
|
107
107
|
background-size: cover;
|
|
108
|
+
background-color: var(--website-homepage-header__background-color);
|
|
108
109
|
|
|
109
110
|
color: var(--color__primary);
|
|
110
111
|
padding: space(3) space(1) space(3) space(1);
|
|
@@ -110,7 +110,7 @@ export default {
|
|
|
110
110
|
flex-shrink: 0;
|
|
111
111
|
flex-direction: column;
|
|
112
112
|
box-sizing: border-box;
|
|
113
|
-
background: rgba(0, 0, 0, 0.01);
|
|
113
|
+
// background: rgba(0, 0, 0, 0.01);
|
|
114
114
|
|
|
115
115
|
&::before {
|
|
116
116
|
content: '';
|
|
@@ -204,6 +204,7 @@ export default {
|
|
|
204
204
|
|
|
205
205
|
&__content {
|
|
206
206
|
margin-top: space(2);
|
|
207
|
+
background: var(--website-header__background-color);
|
|
207
208
|
}
|
|
208
209
|
|
|
209
210
|
&__lead {
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
:columns-tablet="2"
|
|
12
12
|
:columns-desktop="2"
|
|
13
13
|
>
|
|
14
|
-
<div v-for="video in videos" :key="video.id">
|
|
14
|
+
<div v-for="(video, index) in videos" :key="video.id">
|
|
15
15
|
<div class="video-container">
|
|
16
16
|
<iframe
|
|
17
17
|
:src="video.embedUrl"
|
|
18
|
-
:title="
|
|
18
|
+
:title="`Video ${index + 1}`"
|
|
19
19
|
frameborder="0"
|
|
20
20
|
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
|
|
21
21
|
allowfullscreen
|