From a1ca0b2e6bf3919f55a9cd91d1ace56b171b849a Mon Sep 17 00:00:00 2001 From: Geido <60598000+geido@users.noreply.github.com> Date: Tue, 8 Jun 2021 07:55:16 +0300 Subject: [PATCH] Add ming-height to empty tab (#14878) --- .../src/dashboard/components/gridComponents/Tabs.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx index c41abf83a..f10365349 100644 --- a/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx +++ b/superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx @@ -93,6 +93,10 @@ const StyledTabsContainer = styled.div` .ant-tabs { overflow: visible; + .ant-tabs-nav-wrap { + min-height: ${({ theme }) => theme.gridUnit * 12.5}px; + } + .ant-tabs-content-holder { overflow: visible; }