From d80a7a45b60e8d7c84806476345134678a6664bb Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Fri, 1 Sep 2023 10:08:04 -0700 Subject: [PATCH] Fix growing tab height Reviewed By: antonk52 Differential Revision: D48908996 fbshipit-source-id: 6eb0a53f32d0130661c3e2c161063e87ab3ff884 --- desktop/flipper-plugin/src/ui/Tabs.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/flipper-plugin/src/ui/Tabs.tsx b/desktop/flipper-plugin/src/ui/Tabs.tsx index fe02d3699..60730f523 100644 --- a/desktop/flipper-plugin/src/ui/Tabs.tsx +++ b/desktop/flipper-plugin/src/ui/Tabs.tsx @@ -108,5 +108,6 @@ const growingTabs = css` & .ant-tabs-tabpane:not(.ant-tabs-tabpane-hidden) { display: flex; flex-direction: column; + height: 100%; } `;