@asd20/ui 3.2.816 → 3.2.818

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.816",
8
+ "version": "3.2.818",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -3,9 +3,7 @@
3
3
  class="asd20-logo"
4
4
  :class="classes"
5
5
  :href="link"
6
- :aria-label="
7
- `${title} ${subtitle} An Academy District 20 School; We educate and inspire students to thrive.`
8
- "
6
+ :aria-label="`${title} ${subtitle} An Academy District 20 School`"
9
7
  >
10
8
  <figure class="asd20-logo__image">
11
9
  <img v-if="image" :src="image" alt="Our school logo." />
@@ -16,8 +14,9 @@
16
14
  {{ subtitle }}
17
15
  </small>
18
16
  <div v-if="tagline" class="asd20-logo__tagline">
19
- An Academy District 20 School<hr />
20
- <i>We educate and inspire students to thrive.</i>
17
+ An Academy District 20 School
18
+ <!-- <hr />
19
+ <i>We educate and inspire students to thrive.</i> -->
21
20
  </div>
22
21
  </component>
23
22
 
@@ -82,7 +81,7 @@ export default {
82
81
  display: flex;
83
82
  flex-direction: row;
84
83
  flex-wrap: wrap;
85
- // align-items: center;
84
+ align-items: center;
86
85
  justify-content: flex-start;
87
86
  text-decoration: none;
88
87
  box-shadow: none;
@@ -31,22 +31,36 @@ export default {
31
31
 
32
32
  .asd20-social-menu {
33
33
  display: flex;
34
- flex-wrap: wrap;
34
+ flex-wrap: nowrap;
35
35
  justify-content: space-around;
36
- flex-direction: column;
36
+ flex-direction: row;
37
37
  margin: space(1) space(0);
38
38
  &::v-deep .asd20-button {
39
- flex-direction: row;
39
+ flex-direction: column;
40
40
  padding-left: 0;
41
41
  }
42
- &::v-deep .asd20-button__label {
43
- margin-left: space(0.5);
44
- }
42
+ // &::v-deep .asd20-button__label {
43
+ // margin-left: space(0.5);
44
+ // }
45
45
  & > * {
46
46
  box-sizing: border-box;
47
47
  }
48
48
  }
49
-
49
+ @media (min-width: 768px) {
50
+ .asd20-social-menu {
51
+ flex-direction: row;
52
+ &::v-deep .asd20-button {
53
+ flex-direction: column;
54
+ padding: space(0.5);
55
+ }
56
+ &::v-deep .asd20-button__label {
57
+ margin-left: space(0);
58
+ }
59
+ & > * {
60
+ flex-basis: auto;
61
+ }
62
+ }
63
+ }
50
64
  @media (min-width: 1024px) {
51
65
  .asd20-social-menu {
52
66
  flex-direction: row;
@@ -1,5 +1,8 @@
1
1
  <template>
2
- <footer id="page-footer">
2
+ <footer
3
+ id="page-footer"
4
+ :class="organization.title === 'Academy District 20' ? 'footer-image' : ''"
5
+ >
3
6
  <div class="logoContainer">
4
7
  <asd20-logo
5
8
  v-if="organization.title !== 'Academy District 20'"
@@ -230,12 +233,9 @@ export default {
230
233
  }
231
234
  &::v-deep .asd20-logo__image {
232
235
  height: 5rem;
233
- // margin-bottom: space(0.5);
234
236
  }
235
237
  }
236
238
  img {
237
- // margin-top: space(-1);
238
- // margin-left: space(1);
239
239
  max-width: 6rem;
240
240
  }
241
241
  .optionalLogo a {
@@ -299,20 +299,10 @@ export default {
299
299
  .disclosure-links {
300
300
  display: flex;
301
301
  flex-wrap: wrap;
302
- // justify-content: flex-start;
303
302
  margin: 0 0 space(1) 0;
304
303
  font-size: 0.75rem;
305
304
  line-height: 1.25;
306
305
  flex-direction: column;
307
- // a {
308
- // // display: block;
309
- // // padding: space(0.25) space(0.25);
310
- // color: var(--website-footer__title-color);
311
- // flex-grow: 0;
312
- // padding: 0;
313
- // // margin: 0 space(0.5) space(0.5) 0;
314
- // min-height: 45px;
315
- // }
316
306
  .asd20-button {
317
307
  color: var(--website-footer__foreground-color);
318
308
  font-size: 0.75rem !important;
@@ -322,12 +312,17 @@ export default {
322
312
  .copyright {
323
313
  font-size: 0.75rem;
324
314
  line-height: 1.5;
325
- max-width: 75vw;
326
315
  color: var(--website-footer__title-color);
327
316
  margin-left: space(0.5);
328
- // text-align: left;
329
317
  }
330
318
  }
319
+ #page-footer.footer-image {
320
+ background-image: url('https://asd20websitestorage.blob.core.windows.net/asd20-images/page-images/asd20-footer-image.jpg');
321
+ background-repeat: no-repeat;
322
+ background-size: cover;
323
+ background-position: 10%;
324
+ box-shadow: 0px 0px 0px 4000px rgba(0, 23, 128, 0.5) inset;
325
+ }
331
326
 
332
327
  @media (min-width: 768px) {
333
328
  #page-footer {
@@ -393,15 +388,11 @@ export default {
393
388
  }
394
389
  }
395
390
  .asd20-social-menu {
396
- grid-column: -4 / -2;
397
- grid-row: 3 / 4;
391
+ grid-column: 2 / 6;
392
+ grid-row: 4 / 5;
398
393
  align-self: start;
399
394
  justify-self: end;
400
- display: flex;
401
395
  margin: space(-0.5) space(-0.5) space(-0.5) space(-0.5);
402
- &::v-deep .asd20-button {
403
- font-size: 1rem !important;
404
- }
405
396
  }
406
397
  .disclosure-links {
407
398
  grid-column: 2 / 6;
@@ -414,13 +405,8 @@ export default {
414
405
  margin: 0;
415
406
  font-size: 0.75rem;
416
407
  line-height: 1.5;
417
- justify-content: flex-start;
408
+ justify-content: flex-end;
418
409
  text-align: center;
419
- // a {
420
- // padding: space(0.5);
421
- // margin: 0;
422
- // min-height: inherit;
423
- // }
424
410
  }
425
411
  .copyright {
426
412
  grid-column: 2 / 6;
@@ -428,19 +414,21 @@ export default {
428
414
  align-self: end;
429
415
  font-size: 0.75rem;
430
416
  line-height: 1.5;
431
- max-width: 75vw;
432
417
  margin-top: space(3);
433
418
  margin-left: space(0.5);
434
- text-align: left;
435
- // padding-left: space(0.5);
419
+ text-align: right;
436
420
  }
437
421
  }
438
422
  }
439
423
 
440
424
  @media (min-width: 1024px) {
441
425
  #page-footer {
442
- .disclosure-links {
443
- justify-content: flex-end;
426
+ .asd20-social-menu {
427
+ grid-column: 2 / 6;
428
+ grid-row: 4 / 5;
429
+ align-self: start;
430
+ justify-self: end;
431
+ margin: space(-0.5) space(-0.5) space(-0.5) space(-0.5);
444
432
  }
445
433
  .copyright {
446
434
  text-align: right;
@@ -449,3 +437,4 @@ export default {
449
437
  }
450
438
  }
451
439
  </style>
440
+
@@ -51,7 +51,7 @@ export default {
51
51
  // margin-top: space(-1);
52
52
  img {
53
53
  width: 100% !important;
54
- height: 200px !important;
54
+ height: 300px !important;
55
55
  }
56
56
  }
57
57
  &::v-deep .asd20-messaging__heading {
@@ -183,7 +183,7 @@ export default {
183
183
  width: 100%;
184
184
  .asd20-messaging {
185
185
  height: inherit;
186
- padding: space(1);
186
+ padding: space(3) space(1) space(1) space(1);
187
187
  background: var(--color-minus-alpha)
188
188
  var(--website-homepage-header__background-style);
189
189
  }