Skip to content

Commit

Permalink
fix: Fixes Tabs style
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed May 12, 2022
1 parent ee178f4 commit a423b78
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 a423b78

Please sign in to comment.