@asd20/ui 3.2.836 → 3.2.837

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.836",
8
+ "version": "3.2.837",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -113,11 +113,16 @@ export default {
113
113
  font-weight: 900;
114
114
  line-height: 1.5;
115
115
  color: var(--website-homepage-header__title-color);
116
+ animation: slide_left 1.5s ease-in-out 0.5s both;
117
+ }
118
+ &::v-deep .lead {
119
+ animation: slide_left 1.25s ease-in-out 1s both;
120
+ }
121
+
116
122
  // -webkit-background-clip: text;
117
123
  // -webkit-text-fill-color: transparent;
118
124
  // background-image: url('https://asd20websitestorage.blob.core.windows.net/asd20-images/page-images/asd20-header-divider.jpg');
119
125
  // background-size: 30% auto;
120
- }
121
126
  &::v-deep .lead {
122
127
  @include fluid-type($base-font-size * 1.2, $base-font-size * 1.4);
123
128
  color: var(--website-homepage-header__foreground-color);
@@ -174,6 +179,19 @@ export default {
174
179
  }
175
180
  }
176
181
 
182
+ @keyframes slide_left {
183
+ from {
184
+ opacity: 0;
185
+ margin-left: 300px;
186
+ margin-right: -300px;
187
+ }
188
+ to {
189
+ opacity: 1;
190
+ margin-left: 0;
191
+ margin-right: 0;
192
+ }
193
+ }
194
+
177
195
  @media (min-width: 1024px) {
178
196
  .photostrip {
179
197
  height: 40vh;
@@ -27,7 +27,7 @@ const wrapper = {
27
27
  floating: [],
28
28
  status: [],
29
29
  }
30
- return boolean('Show Notifications', true)
30
+ return boolean('Show Notifications', false)
31
31
  ? notifications || empty
32
32
  : empty
33
33
  },
@@ -45,7 +45,7 @@
45
45
  : 'notification-wrapper'
46
46
  "
47
47
  >
48
- <client-only>
48
+ <!-- <client-only>
49
49
  <a
50
50
  class="weather-link"
51
51
  href="https://www.asd20.org/alerts-and-communication/weather-related-communication/"
@@ -57,7 +57,7 @@
57
57
  @toggle-all="$emit('toggle-all')"
58
58
  />
59
59
  </a>
60
- </client-only>
60
+ </client-only> -->
61
61
 
62
62
  <client-only>
63
63
  <Asd20LanguageTranslation
@@ -218,6 +218,9 @@ export default {
218
218
  #menu-toggle-button {
219
219
  display: none;
220
220
  }
221
+ .asd20-picker {
222
+ margin-left: space(1);
223
+ }
221
224
  }
222
225
  .logo-header {
223
226
  --fill-one: rgba(255, 255, 255, 1);
@@ -266,11 +269,11 @@ export default {
266
269
  .asd20-language-loader {
267
270
  order: 1;
268
271
  }
269
- .translation-button-adjust {
270
- position: absolute;
271
- top: space(0.25);
272
- right: space(0.25);
273
- }
272
+ // .translation-button-adjust {
273
+ // position: absolute;
274
+ // top: space(0.25);
275
+ // right: space(0.25);
276
+ // }
274
277
  & ::v-deep .notification-group--status .notifications {
275
278
  padding: 0.375rem;
276
279
  border-radius: 3rem;
@@ -306,12 +309,18 @@ export default {
306
309
  // }
307
310
  }
308
311
  .notification-wrapper {
312
+ position: absolute;
313
+ top: space(0.5);
314
+ right: space(0.5);
309
315
  display: flex;
310
316
  flex-direction: row;
311
- justify-content: center;
317
+ justify-content: flex-end;
312
318
  width: 100%;
313
319
  }
314
320
  .double-notification-wrapper {
321
+ position: absolute;
322
+ top: space(1);
323
+ right: space(0.5);
315
324
  display: flex;
316
325
  flex-direction: row;
317
326
  justify-content: flex-end;
@@ -349,10 +358,10 @@ export default {
349
358
  .logo-header {
350
359
  padding: 0 space(1);
351
360
  }
352
- .translation-button-adjust {
353
- top: space(-0.5);
354
- right: space(0.5);
355
- }
361
+ // .translation-button-adjust {
362
+ // top: space(-0.5);
363
+ // right: space(0.5);
364
+ // }
356
365
  .double-notification-wrapper {
357
366
  // padding-right: space(1);
358
367
  justify-content: flex-end !important;
@@ -384,6 +393,9 @@ export default {
384
393
  }
385
394
  .notification-wrapper,
386
395
  .double-notification-wrapper {
396
+ position: relative;
397
+ top: 0;
398
+ right: 0;
387
399
  display: flex;
388
400
  justify-content: flex-end;
389
401
  align-items: center;