From 2b107ed33d8d55ad051f83526c03502f5df13c43 Mon Sep 17 00:00:00 2001 From: Kamil Gabryjelski Date: Sat, 14 Nov 2020 08:14:02 +0100 Subject: [PATCH] Fix overflow hidden issues in Dashboard Builder tabs (#11691) --- .../src/dashboard/components/gridComponents/Tabs.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx index 222dd55902..02f4cfd6f8 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx @@ -104,6 +104,14 @@ const StyledTabsContainer = styled.div` top: ${({ theme }) => theme.gridUnit * 2}px; } + .ant-tabs { + overflow: visible; + + .ant-tabs-content-holder { + overflow: visible; + } + } + div .ant-tabs-tab-btn { text-transform: none; }