@luxfi/core 5.3.6 → 5.3.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.
- package/components/footer.tsx +2 -2
- package/package.json +1 -1
package/components/footer.tsx
CHANGED
|
@@ -51,9 +51,9 @@ const Footer: React.FC<{
|
|
|
51
51
|
)}
|
|
52
52
|
key={index + 1}
|
|
53
53
|
itemClx={(def: LinkDef) => ((def.variant === 'linkFG') ?
|
|
54
|
-
'font-nav text-[15px]/[1.3] font-medium text-foreground
|
|
54
|
+
'font-nav text-[15px]/[1.3] font-medium tracking-normal text-muted-1 sm:hover:text-foreground transition-color duration-500'
|
|
55
55
|
:
|
|
56
|
-
'text-[15px]/[1.1] font-normal tracking-[0.2px] text-muted-1'
|
|
56
|
+
'text-[15px]/[1.1] font-normal tracking-[0.2px] text-muted-1 sm:hover:text-foreground transition-color duration-500'
|
|
57
57
|
)}
|
|
58
58
|
/>
|
|
59
59
|
)
|
package/package.json
CHANGED