@dillingerstaffing/strand-svelte 0.13.0 → 0.14.0
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/dist/css/strand-ui.css +13 -0
- package/dist/index.js +1201 -1189
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/Link/Link.svelte +5 -1
- package/src/components/Link/Link.test.ts +10 -0
- package/src/components/Nav/Nav.svelte +5 -1
- package/src/components/Nav/Nav.test.ts +5 -0
- package/src/components/Section/Section.svelte +4 -1
- package/src/components/Section/Section.test.ts +10 -0
package/dist/css/strand-ui.css
CHANGED
|
@@ -2818,6 +2818,19 @@
|
|
|
2818
2818
|
line-height: var(--strand-leading-relaxed);
|
|
2819
2819
|
}
|
|
2820
2820
|
|
|
2821
|
+
.strand-text-secondary strong {
|
|
2822
|
+
color: var(--strand-gray-700);
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
.strand-text-secondary a {
|
|
2826
|
+
color: var(--strand-blue-primary);
|
|
2827
|
+
text-decoration: none;
|
|
2828
|
+
}
|
|
2829
|
+
|
|
2830
|
+
.strand-text-secondary a:hover {
|
|
2831
|
+
color: var(--strand-blue-vivid);
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2821
2834
|
.strand-text-secondary--xs {
|
|
2822
2835
|
font-size: var(--strand-text-xs);
|
|
2823
2836
|
}
|