Skip to content

Commit

Permalink
fix: [GSW-2033] path-link-icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
tfrg committed Jan 4, 2025
1 parent 9141953 commit 5ef1169
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,12 @@ export const TableColumn = styled.div<{ tdWidth: number }>`
}
.path-link-icon {
path {
fill: ${({ theme }) => (theme.themeKey === "dark" ? theme.color.text04 : theme.color.text03)};
}
&:hover {
path {
fill: ${({ theme }) => theme.color.text03};
fill: ${({ theme }) => (theme.themeKey === "dark" ? theme.color.text03 : theme.color.text04)};
}
}
}
Expand Down

0 comments on commit 5ef1169

Please sign in to comment.