fix navbar bottom border when tabs arent rendered (#2883)

This commit is contained in:
Rishabh Saxena 2021-02-08 10:50:52 +05:30 committed by GitHub
parent 85bac746b0
commit a473ed23b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -82,6 +82,8 @@ const HeaderRow = styled.div<{ justify: string }>`
flex-direction: row;
justify-content: ${(props) => props.justify};
height: ${(props) => `calc(${props.theme.smallHeaderHeight})`};
border-bottom: 1px solid
${(props) => props.theme.colors.header.tabsHorizontalSeparator};
`;
const HeaderSection = styled.div<{ justify: string }>`

View File

@ -20,8 +20,6 @@ const Container = styled.div`
stroke: ${(props) => props.theme.colors.header.tabText};
}
}
border-top: 1px solid
${(props) => props.theme.colors.header.tabsHorizontalSeparator};
border-bottom: 1px solid
${(props) => props.theme.colors.header.tabsHorizontalSeparator};
`;