fix: Fixes Tabs style (#20050)

This commit is contained in:
Michael S. Molina 2022-05-12 16:49:51 -03:00 committed by GitHub
parent 99830703b1
commit fff9ad05d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -112,12 +112,13 @@ const StyledEditableTabs = styled(StyledTabs)`
}
${
fullWidth &&
css`
.ant-tabs-nav-list {
width: 100%;
}
`
fullWidth
? css`
.ant-tabs-nav-list {
width: 100%;
}
`
: ''
}
`}
`;