Fix overflow hidden issues in Dashboard Builder tabs (#11691)

This commit is contained in:
Kamil Gabryjelski 2020-11-14 08:14:02 +01:00 committed by GitHub
parent 4cfcaebb61
commit 2b107ed33d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,6 +104,14 @@ const StyledTabsContainer = styled.div`
top: ${({ theme }) => theme.gridUnit * 2}px; top: ${({ theme }) => theme.gridUnit * 2}px;
} }
.ant-tabs {
overflow: visible;
.ant-tabs-content-holder {
overflow: visible;
}
}
div .ant-tabs-tab-btn { div .ant-tabs-tab-btn {
text-transform: none; text-transform: none;
} }