@asd20/ui 3.2.783 → 3.2.785

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.783",
8
+ "version": "3.2.785",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -100,18 +100,18 @@ $factoid-fg: var(--website-card__reverse-background-color);
100
100
  box-sizing: border-box;
101
101
 
102
102
  &__value {
103
- color: var(--color__primary);
104
- font-size: 2em;
103
+ color: var(--color__primary-s10);
104
+ font-size: 2.15rem;
105
105
  font-weight: bold;
106
106
  small {
107
- font-size: 0.5em;
107
+ font-size: 1.15rem;
108
108
  }
109
109
  }
110
110
  &__label {
111
- font-size: 0.875rem;
111
+ font-size: 0.85rem;
112
112
  font-weight: 300;
113
113
  // text-transform: uppercase;
114
- color: var(--color__primary-s20);
114
+ color: var(--color__primary-s80);
115
115
  // white-space: nowrap;
116
116
  opacity: 0.75;
117
117
  }
@@ -122,10 +122,10 @@ $factoid-fg: var(--website-card__reverse-background-color);
122
122
  // padding: space(1) space(2);
123
123
 
124
124
  &__value {
125
- font-size: 3em;
125
+ font-size: 2.75rem;
126
126
  }
127
127
  &__label {
128
- font-size: 1.25em;
128
+ font-size: 1.15rem;
129
129
  }
130
130
  }
131
131
  }
@@ -409,7 +409,8 @@ export default {
409
409
 
410
410
  h1 {
411
411
  position: relative;
412
- color: var(--website-header__title-color);
412
+ // color: var(--website-header__title-color);
413
+ color: rgb(255, 255, 255);
413
414
  @include asd20-font(
414
415
  1.5,
415
416
  var(--website-typography__font-family-headlines),
@@ -440,6 +441,7 @@ export default {
440
441
  }
441
442
 
442
443
  &__lead {
444
+ color: rgb(235, 235, 235);
443
445
  @include asd20-font(1, var(--website-typography__font-family-body));
444
446
  &::v-deep a {
445
447
  color: var(--website-header__foreground-color);
@@ -311,13 +311,14 @@ export default {
311
311
  width: 100%;
312
312
  height: 100%;
313
313
  color: hsl(0, 0%, 0%);
314
- fill: #80B3C0;
314
+ // fill: #80B3C0;
315
+ fill: var(--color__accent);
315
316
  }
316
317
 
317
318
  span {
318
319
  position: absolute;
319
- top: -0.5em;
320
- right: -0.5em;
320
+ top: -0.25em;
321
+ right: -0.25em;
321
322
  width: 1rem;
322
323
  height: 1rem;
323
324
  display: flex;
@@ -325,7 +326,7 @@ export default {
325
326
  align-items: center;
326
327
  background: #80B3C0;
327
328
  color: white;
328
- font-size: 0.5rem;
329
+ font-size: 0.75rem;
329
330
  border-radius: 50%;
330
331
  }
331
332
  }
@@ -357,9 +358,12 @@ export default {
357
358
  border-radius: 100%;
358
359
  background: rgba(0,0,0, 0.125);
359
360
  &:focus {
360
- box-shadow: 0 0 0 3px white, 0 0 10px 0 #477e88;
361
- outline: 3px solid #477e88;
362
- outline-offset: 0px;
361
+ // box-shadow: 0 0 0 2px white;
362
+ // outline: 2px solid white;
363
+ // outline-offset: -2px;
364
+ // box-shadow: 0 0 0 3px white, 0 0 10px 0 #477e88;
365
+ // outline: 3px solid #477e88;
366
+ // outline-offset: 0px;
363
367
  }
364
368
  }
365
369
  span {
@@ -33,7 +33,7 @@
33
33
  }
34
34
 
35
35
  @mixin asd20-focus() {
36
- box-shadow: inset 0 0 0 3px white, 0 0 10px 0 var(--color__accent-s20);
37
- outline: 3px solid var(--color__accent-s20);
36
+ box-shadow: inset 0 0 0 3px white, 0 0 3px 0 var(--color__accent-s10) !important;
37
+ outline: 2px solid var(--color__accent-s10);
38
38
  outline-offset: -2px;
39
39
  }