Web:Components:TableContainer: fix color of icon for group menu items

This commit is contained in:
TimofeyBoyko 2022-07-20 08:40:11 +03:00
parent 0782af817f
commit 684e28d188

View File

@ -25,9 +25,13 @@ const StyledButton = styled(Button)`
}
svg {
path {
path[fill] {
fill: ${(props) => props.theme.button.color.base};
}
path[stroke] {
stroke: ${(props) => props.theme.button.color.base};
}
}
:hover,
@ -38,17 +42,25 @@ const StyledButton = styled(Button)`
:hover {
svg {
path {
path[fill] {
fill: ${(props) => props.theme.button.color.baseHover};
}
path[stroke] {
stroke: ${(props) => props.theme.button.color.baseHover};
}
}
}
:active {
svg {
path {
path[fill] {
fill: ${(props) => props.theme.button.color.baseActive};
}
path[stroke] {
stroke: ${(props) => props.theme.button.color.baseActive};
}
}
}