jvetrau-ds 0.1.6 → 0.1.8
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/base.css +19 -0
- package/package.json +1 -1
- package/styles.css +5 -5
package/base.css
CHANGED
|
@@ -28,6 +28,25 @@ body {
|
|
|
28
28
|
color: var(--body-color);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
a {
|
|
32
|
+
/* color */
|
|
33
|
+
--link-color: var(--color-primary-2);
|
|
34
|
+
|
|
35
|
+
color: var(--link-color);
|
|
36
|
+
|
|
37
|
+
/* typography */
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
a:hover,
|
|
42
|
+
a:focus-visible,
|
|
43
|
+
a:active {
|
|
44
|
+
/* color */
|
|
45
|
+
|
|
46
|
+
/* typography */
|
|
47
|
+
text-decoration: underline;
|
|
48
|
+
}
|
|
49
|
+
|
|
31
50
|
/* src/base/typography.css */
|
|
32
51
|
body {
|
|
33
52
|
/* typography */
|
package/package.json
CHANGED
package/styles.css
CHANGED
|
@@ -2467,7 +2467,7 @@
|
|
|
2467
2467
|
/* src/patterns/screen-header/screen-header.css */
|
|
2468
2468
|
.screen-header {
|
|
2469
2469
|
/* color */
|
|
2470
|
-
color: var(--color-text)
|
|
2470
|
+
/* color: var(--color-text);*/
|
|
2471
2471
|
|
|
2472
2472
|
/* typography */
|
|
2473
2473
|
|
|
@@ -2515,11 +2515,11 @@
|
|
|
2515
2515
|
/* color */
|
|
2516
2516
|
|
|
2517
2517
|
/* typography */
|
|
2518
|
-
font-family: var(--font-body-family);
|
|
2518
|
+
/* font-family: var(--font-body-family);
|
|
2519
2519
|
font-size: var(--font-body);
|
|
2520
2520
|
font-weight: var(--font-body-weight);
|
|
2521
2521
|
line-height: var(--font-body-line);
|
|
2522
|
-
letter-spacing: var(--font-body-letter-spacing)
|
|
2522
|
+
letter-spacing: var(--font-body-letter-spacing);*/
|
|
2523
2523
|
|
|
2524
2524
|
/* size */
|
|
2525
2525
|
width: 100%;
|
|
@@ -2536,11 +2536,11 @@
|
|
|
2536
2536
|
/* color */
|
|
2537
2537
|
|
|
2538
2538
|
/* typography */
|
|
2539
|
-
font-family: var(--font-h1-family);
|
|
2539
|
+
/* font-family: var(--font-h1-family);
|
|
2540
2540
|
font-size: var(--font-h1);
|
|
2541
2541
|
font-weight: var(--font-h1-weight);
|
|
2542
2542
|
line-height: var(--font-h1-line);
|
|
2543
|
-
letter-spacing: var(--font-h1-letter-spacing)
|
|
2543
|
+
letter-spacing: var(--font-h1-letter-spacing);*/
|
|
2544
2544
|
|
|
2545
2545
|
/* size */
|
|
2546
2546
|
width: 100%;
|