Skip to content

Commit

Permalink
fix: Fixes Tabs style (#20050)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina authored May 12, 2022
1 parent 9983070 commit fff9ad0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions superset-frontend/src/components/Tabs/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,13 @@ const StyledEditableTabs = styled(StyledTabs)`
}
${
fullWidth &&
css`
.ant-tabs-nav-list {
width: 100%;
}
`
fullWidth
? css`
.ant-tabs-nav-list {
width: 100%;
}
`
: ''
}
`}
`;
Expand Down

0 comments on commit fff9ad0

Please sign in to comment.