Skip to content

Commit

Permalink
fix(frontend): fix links in test run tabs (#2243)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Mar 24, 2023
1 parent 48efb1a commit 1bb98af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/src/components/RunDetailLayout/RunDetailLayout.styled.ts
Expand Up @@ -47,7 +47,7 @@ export const ContainerHeader = styled.div`
.ant-tabs-tab {
font-weight: 600;
padding: 5px 16px;
padding: 0;
margin: 7px 0;
border: ${({theme}) => `1px solid ${theme.color.borderLight}`};
border-right: none;
Expand Down Expand Up @@ -122,6 +122,7 @@ export const Title = styled(Typography.Title).attrs({ellipsis: true, level: 2})`
export const TabLink = styled(Link)<{$isActive: boolean}>`
&& {
color: ${({theme, $isActive}) => $isActive && theme.color.white};
padding: 5px 16px;
&:hover,
&:visited,
Expand Down

0 comments on commit 1bb98af

Please sign in to comment.