Skip to content

Commit

Permalink
Merge branch 'fer/1901' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandolucchesi committed Sep 28, 2023
2 parents e55fae8 + 1bcc2bd commit bde1b2b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions web/components/src/Link/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const BaseLink = styled(NextLink)`
display: inline-flex;
align-items: center;
color: var(--slate-blue-95);
text-decoration: none;
&[data-focus-visible-added]:focus {
${outlineTemplate(outline)}
}
Expand Down Expand Up @@ -145,7 +144,7 @@ export const Link = forwardRef<HTMLAnchorElement, LinkProps>(function Link(
style={
{
...style,
'--textDecoration': underline ? 'underline' : 'none',
textDecoration: underline ? 'underline' : 'none',
} as CSSProperties
}
{...rest}
Expand Down

0 comments on commit bde1b2b

Please sign in to comment.