fragment-headless-sdk 2.1.5 → 2.1.7

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.
@@ -0,0 +1,31 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@100..900&family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@300;400;600;700&family=Lato:wght@300;400;700&family=Montserrat:wght@300;400;500;700&family=Inter:wght@300;400;500;700&family=Poppins:wght@300;400;600;700&family=Raleway:wght@300;400;500;700&family=Playfair+Display:wght@400;700&family=Merriweather:wght@300;400;700&family=Oswald:wght@300;400;500;700&display=swap");
2
+
3
+ /* Custom animations for fragment-headless-sdk */
4
+ @keyframes marquee {
5
+ 0% {
6
+ transform: translateX(0%);
7
+ }
8
+ 100% {
9
+ transform: translateX(-100%);
10
+ }
11
+ }
12
+
13
+ /* Utility classes for marquee animations */
14
+ .animate-marquee {
15
+ animation: marquee 25s linear infinite;
16
+ }
17
+
18
+ /* Make hero/announcement prose links inherit the surrounding text color (v2.1+) */
19
+ .prose {
20
+ --tw-prose-links: currentColor;
21
+ --tw-prose-links-hover: currentColor;
22
+ }
23
+
24
+ .prose :where(a):not(:where([class~="not-prose"] *)) {
25
+ color: currentColor;
26
+ }
27
+
28
+ .prose :where(a):not(:where([class~="not-prose"] *)):hover {
29
+ color: currentColor;
30
+ text-decoration: underline;
31
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fragment-headless-sdk",
3
- "version": "2.1.5",
3
+ "version": "2.1.7",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",