@asd20/ui 3.2.494 → 3.2.496
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
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
<small v-if="subtitle" class="asd20-logo__subtitle">
|
|
14
14
|
{{ subtitle }}
|
|
15
15
|
</small>
|
|
16
|
+
<div v-if="tagline" class="asd20-logo__tagline">
|
|
17
|
+
An Academy District 20 School
|
|
18
|
+
</div>
|
|
16
19
|
</component>
|
|
17
|
-
|
|
18
|
-
An Academy District 20 School
|
|
19
|
-
</div>
|
|
20
|
+
|
|
20
21
|
</a>
|
|
21
22
|
</template>
|
|
22
23
|
|
|
@@ -53,6 +54,7 @@ export default {
|
|
|
53
54
|
classes[`asd20-logo--bordered`] = this.bordered
|
|
54
55
|
classes[`asd20-logo--reversed`] = this.reversed
|
|
55
56
|
classes[`asd20-logo--wrappable`] = this.wrappable
|
|
57
|
+
classes[`asd20-logo--noSubtitle`] = !this.subtitle
|
|
56
58
|
return classes
|
|
57
59
|
},
|
|
58
60
|
abbreviatedTitle() {
|
|
@@ -77,7 +79,7 @@ export default {
|
|
|
77
79
|
display: flex;
|
|
78
80
|
flex-direction: row;
|
|
79
81
|
flex-wrap: wrap;
|
|
80
|
-
align-items: center;
|
|
82
|
+
// align-items: center;
|
|
81
83
|
justify-content: flex-start;
|
|
82
84
|
text-decoration: none;
|
|
83
85
|
box-shadow: none;
|
|
@@ -108,7 +110,7 @@ export default {
|
|
|
108
110
|
display: flex;
|
|
109
111
|
flex-direction: column;
|
|
110
112
|
margin: 0;
|
|
111
|
-
text-transform: uppercase;
|
|
113
|
+
// text-transform: uppercase;
|
|
112
114
|
font-size: 1em !important;
|
|
113
115
|
font-weight: var(--website-typography__font-weight-headlines, bold);
|
|
114
116
|
font-family: var(--website-typography__font-family-headlines);
|
|
@@ -135,7 +137,7 @@ export default {
|
|
|
135
137
|
&__tagline {
|
|
136
138
|
width: 100%;
|
|
137
139
|
color: var(--logo-subtitle-color, var(--color__secondary));
|
|
138
|
-
margin-top: space(
|
|
140
|
+
margin-top: space(0.50);
|
|
139
141
|
font-family: var(--website-typography__font-family-headlines);
|
|
140
142
|
font-weight: var(--website-typography__font-weight-body, normal);
|
|
141
143
|
font-size: 0.5em;
|
|
@@ -173,6 +175,9 @@ export default {
|
|
|
173
175
|
white-space: normal;
|
|
174
176
|
}
|
|
175
177
|
}
|
|
178
|
+
&--noSubtitle {
|
|
179
|
+
align-items: center;
|
|
180
|
+
}
|
|
176
181
|
&--md {
|
|
177
182
|
font-size: 1.5rem;
|
|
178
183
|
}
|