nve-designsystem 2.13.0 → 2.13.1

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.
@@ -1,5 +1,5 @@
1
1
  import { i as r } from "../../chunks/lit-element.js";
2
- const e = r`
2
+ const a = r`
3
3
  .link-card {
4
4
  border-radius: var(--borderRadius-large, 6px);
5
5
  padding: var(--spacing-medium, 16px) var(--spacing-large, 24px);
@@ -11,11 +11,16 @@ const e = r`
11
11
  align-items: center;
12
12
  cursor: pointer;
13
13
  text-decoration: none;
14
+ }
15
+
16
+ /*bruker color på a, ikke på link-card fordi link-card overskriver standard lenke farge i remmeverker som next js som har sin egen
17
+ wrappar rundt lenke og som støtter :visited*/
18
+ a {
14
19
  color: var(--neutrals-foreground-primary, #0d0d0e);
15
20
  }
16
21
 
17
22
  .link-card--visited,
18
- .link-card:visited {
23
+ .a:visited {
19
24
  color: var(--interactive-links-visited);
20
25
  }
21
26
 
@@ -46,7 +51,6 @@ const e = r`
46
51
 
47
52
  .link-card__label {
48
53
  font-size: 1rem;
49
- color: inherit;
50
54
  font-family: 'Source Sans Pro';
51
55
  font-style: normal;
52
56
  font-weight: 400;
@@ -118,5 +122,5 @@ const e = r`
118
122
  }
119
123
  `;
120
124
  export {
121
- e as default
125
+ a as default
122
126
  };