Skip to content
Snippets Groups Projects
Commit 58bbd2bc authored by Piotr Gawron's avatar Piotr Gawron
Browse files

change color for annotation links

parent 044eefd7
No related branches found
No related tags found
1 merge request!340Resolve "[MIN-251] Clicking on a protein: annotation"
...@@ -5,7 +5,7 @@ type AnnotationItemProps = Pick<Reference, 'link' | 'type' | 'resource'>; ...@@ -5,7 +5,7 @@ type AnnotationItemProps = Pick<Reference, 'link' | 'type' | 'resource'>;
export const AnnotationItem = ({ link, type, resource }: AnnotationItemProps): JSX.Element => ( export const AnnotationItem = ({ link, type, resource }: AnnotationItemProps): JSX.Element => (
<a <a
className={twMerge('pl-3 text-sm font-normal', link ? 'underline' : '')} className={twMerge('pl-3 text-sm font-normal', link ? 'text-blue-800 underline' : '')}
href={link?.toString()} href={link?.toString()}
target="_blank" target="_blank"
> >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment