Skip to content

Commit

Permalink
style: Use description color instead of disabled in Empty (#47268)
Browse files Browse the repository at this point in the history
Signed-off-by: evgmol <146968816+evgmol@users.noreply.github.com>
  • Loading branch information
evgmol committed Mar 16, 2024
1 parent bcc5d11 commit 13ed05f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/empty/style/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ const genSharedEmptyStyle: GenerateStyle<EmptyToken> = (token): CSSObject => {

'&-normal': {
marginBlock: marginXL,
color: token.colorTextDisabled,
color: token.colorTextDescription,

[`${componentCls}-description`]: {
color: token.colorTextDisabled,
color: token.colorTextDescription,
},

[`${componentCls}-image`]: {
Expand All @@ -64,7 +64,7 @@ const genSharedEmptyStyle: GenerateStyle<EmptyToken> = (token): CSSObject => {

'&-small': {
marginBlock: marginXS,
color: token.colorTextDisabled,
color: token.colorTextDescription,

[`${componentCls}-image`]: {
height: token.emptyImgHeightSM,
Expand Down

0 comments on commit 13ed05f

Please sign in to comment.