From a2bdb21937da6faf31855e0a9ef271ec1ab73c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=9F=E8=B4=A4?= Date: Thu, 27 Jul 2023 21:51:28 +0800 Subject: [PATCH] fix(layout): fix footer links hover no work error close https://github.com/ant-design/pro-components/issues/7426 --- packages/layout/src/components/GlobalFooter/style.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/layout/src/components/GlobalFooter/style.ts b/packages/layout/src/components/GlobalFooter/style.ts index 236cc0c82937..1d1fac8a5db7 100644 --- a/packages/layout/src/components/GlobalFooter/style.ts +++ b/packages/layout/src/components/GlobalFooter/style.ts @@ -25,9 +25,9 @@ const genFooterToolBarStyle: GenerateStyle = (token) => { }, '*:not(:last-child)': { marginInlineEnd: 8, - '&:hover': { - color: token.colorText, - }, + }, + '&:hover': { + color: token.colorPrimary, }, }, '&-copyright': { fontSize: '14px', color: token.colorText },