From 1bb98af091e00b64c5326450928bbbebba8d10d2 Mon Sep 17 00:00:00 2001 From: Jorge Padilla Date: Fri, 24 Mar 2023 14:07:19 -0500 Subject: [PATCH] fix(frontend): fix links in test run tabs (#2243) --- web/src/components/RunDetailLayout/RunDetailLayout.styled.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/components/RunDetailLayout/RunDetailLayout.styled.ts b/web/src/components/RunDetailLayout/RunDetailLayout.styled.ts index 38377f6a5b..d9268035cf 100644 --- a/web/src/components/RunDetailLayout/RunDetailLayout.styled.ts +++ b/web/src/components/RunDetailLayout/RunDetailLayout.styled.ts @@ -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; @@ -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,