Skip to content
Snippets Groups Projects
Unverified Commit 21ff5278 authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Fix summarize button color (#23728)

parent 1d1d76a1
Branches
Tags
No related merge requests found
......@@ -54,7 +54,7 @@ export const SavedQuestionHeaderButtonContainer = styled.div`
export const HeaderButton = styled(Button)`
font-size: 0.875rem;
background-color: ${({ active, color = getDefaultColor() }) =>
active ? alpha(color, 0.8) : "transparent"};
active ? color : "transparent"};
color: ${({ active }) => (active ? "white" : color("text-dark"))};
&:hover {
background-color: ${({ color = getDefaultColor() }) => alpha(color, 0.15)};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment