diff --git a/.changeset/few-cameras-joke.md b/.changeset/few-cameras-joke.md new file mode 100644 index 000000000..f11c942e7 --- /dev/null +++ b/.changeset/few-cameras-joke.md @@ -0,0 +1,5 @@ +--- +'@strapi/design-system': patch +--- + +Fixed: Link doesn't show the hover color diff --git a/packages/design-system/src/components/Link/Link.tsx b/packages/design-system/src/components/Link/Link.tsx index 5f8f501b9..44c729bff 100644 --- a/packages/design-system/src/components/Link/Link.tsx +++ b/packages/design-system/src/components/Link/Link.tsx @@ -52,7 +52,9 @@ const LinkWrapper = styled(BaseLink)` } &:hover { - color: ${({ theme }) => theme.colors.primary500}; + span { + color: ${({ theme }) => theme.colors.primary500}; + } } &:active {