0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): icon colors on the action menu (#1179)

This commit is contained in:
Xiao Yijun 2022-06-21 17:03:55 +08:00 committed by GitHub
parent 1704f57aad
commit d71c18c83c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 0 deletions

View file

@ -84,3 +84,7 @@
}
}
}
.resetIcon {
color: var(--color-icon);
}

View file

@ -165,6 +165,7 @@ const ConnectorDetails = () => {
{data.type !== ConnectorType.Social && (
<ActionMenuItem
icon={<Reset />}
iconClassName={styles.resetIcon}
onClick={() => {
setIsSetupOpen(true);
}}

View file

@ -81,3 +81,7 @@
padding: _.unit(6) 0;
}
}
.resetIcon {
color: var(--color-icon);
}

View file

@ -142,6 +142,7 @@ const UserDetails = () => {
>
<ActionMenuItem
icon={<Reset />}
iconClassName={styles.resetIcon}
onClick={() => {
setIsResetPasswordFormOpen(true);
}}