Skip to content

Commit

Permalink
fix: fix tab radius in split mode
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed May 23, 2023
1 parent 0d60217 commit 24fa80b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export const NavbarTabs: StyledComponent<TabsProps> = styled(Tabs)(
theme.palette.mode === 'dark'
? theme.palette.common.white
: alpha(theme.palette.common.black, 0.04),
borderRadius: theme.shape.borderRadius,
borderRadius: Math.max(
theme.shape.borderRadius,
theme.shape.borderRadiusSecondary,
),
padding: theme.spacing(0.5),
flex: 1,
display: 'flex',
Expand Down

0 comments on commit 24fa80b

Please sign in to comment.