Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
fix: themed link on footer (DSN-2536) (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaalnaik authored Nov 13, 2024
1 parent 2a9f576 commit 4aaa0b8
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions packages/chat/src/components/NewFooter/NewFooter.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { keyframes, style } from '@vanilla-extract/css';
import { recipe } from '@vanilla-extract/recipes';

import { COLORS } from '@/styles/colors';
import { PALETTE } from '@/styles/colors.css';
import { FAMILY } from '@/styles/font';
import { SIZES } from '@/styles/sizes';
import { transition } from '@/styles/transitions';
Expand Down Expand Up @@ -93,12 +94,12 @@ export const extraLinkStyles = style({
selectors: {
'&:hover': {
textDecoration: 'underline',
color: COLORS.ACCENT[500],
textDecorationColor: COLORS.ACCENT[500],
color: PALETTE.colors[500],
textDecorationColor: PALETTE.colors[500],
},
'&:active': {
color: COLORS.ACCENT[600],
textDecorationColor: COLORS.ACCENT[600],
color: PALETTE.colors[600],
textDecorationColor: PALETTE.colors[600],
},
},
});
Expand All @@ -110,11 +111,11 @@ export const voiceflowLink = style({
transition: transition(['color', 'text-decoration-color']),
selectors: {
'&:hover': {
color: COLORS.ACCENT[500],
textDecorationColor: COLORS.ACCENT[500],
color: PALETTE.colors[500],
textDecorationColor: PALETTE.colors[500],
},
'&:active': {
color: COLORS.ACCENT[600],
color: PALETTE.colors[600],
textDecorationColor: 'transparent',
},
},
Expand Down

0 comments on commit 4aaa0b8

Please sign in to comment.