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:
parent
1704f57aad
commit
d71c18c83c
4 changed files with 10 additions and 0 deletions
|
@ -84,3 +84,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.resetIcon {
|
||||
color: var(--color-icon);
|
||||
}
|
||||
|
|
|
@ -165,6 +165,7 @@ const ConnectorDetails = () => {
|
|||
{data.type !== ConnectorType.Social && (
|
||||
<ActionMenuItem
|
||||
icon={<Reset />}
|
||||
iconClassName={styles.resetIcon}
|
||||
onClick={() => {
|
||||
setIsSetupOpen(true);
|
||||
}}
|
||||
|
|
|
@ -81,3 +81,7 @@
|
|||
padding: _.unit(6) 0;
|
||||
}
|
||||
}
|
||||
|
||||
.resetIcon {
|
||||
color: var(--color-icon);
|
||||
}
|
||||
|
|
|
@ -142,6 +142,7 @@ const UserDetails = () => {
|
|||
>
|
||||
<ActionMenuItem
|
||||
icon={<Reset />}
|
||||
iconClassName={styles.resetIcon}
|
||||
onClick={() => {
|
||||
setIsResetPasswordFormOpen(true);
|
||||
}}
|
||||
|
|
Loading…
Add table
Reference in a new issue