Skip to content
Snippets Groups Projects
Unverified Commit e45c5939 authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Make tab components use `text-dark` color (#28056)

parent 9adc1120
Branches
Tags
No related merge requests found
......@@ -14,7 +14,7 @@ export const TabRoot = styled.button<TabProps>`
flex: 1;
text-align: left;
color: ${props => (props.isSelected ? color("brand") : color("text-light"))};
color: ${props => (props.isSelected ? color("brand") : color("text-dark"))};
background-color: ${props =>
props.isSelected ? alpha("brand", 0.1) : "transparent"};
cursor: pointer;
......
......@@ -16,7 +16,7 @@ export const TabLabel = styled.div`
export const TabLinkRoot = styled(Link)<TabLinkProps>`
padding: 1rem 0;
color: ${props => (props.isSelected ? color("brand") : color("text-medium"))};
color: ${props => (props.isSelected ? color("brand") : color("text-dark"))};
font-size: 0.875rem;
font-weight: 700;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment