Browse Source

Fix section title styling on search view

master
jeffvli 3 years ago
committed by Jeff
parent
commit
757305dc8f
  1. 6
      src/components/shared/styled.ts

6
src/components/shared/styled.ts

@ -204,4 +204,10 @@ export const SectionTitle = styled.a`
text-decoration: none; text-decoration: none;
color: ${(props) => (!props.onClick ? props.theme.primary.text : undefined)}; color: ${(props) => (!props.onClick ? props.theme.primary.text : undefined)};
} }
&:active,
&:focus {
text-decoration: none;
color: ${(props) => (!props.onClick ? props.theme.primary.text : undefined)};
}
`; `;

Loading…
Cancel
Save