From 8a0490137c431565dba0b71d52ce2209f3bc75da Mon Sep 17 00:00:00 2001 From: Priyanka <43825112+priyanka-mahour@users.noreply.github.com> Date: Thu, 20 Apr 2023 11:42:20 +0530 Subject: [PATCH] fix: Tab title text cut issue (#22486) ## Description Tab name panel does not spatially accommodate letters like 'g' and 'p' in the name --- app/client/src/widgets/TabsWidget/component/PageTabs.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/client/src/widgets/TabsWidget/component/PageTabs.tsx b/app/client/src/widgets/TabsWidget/component/PageTabs.tsx index a7604686c9..d00d68c4e4 100644 --- a/app/client/src/widgets/TabsWidget/component/PageTabs.tsx +++ b/app/client/src/widgets/TabsWidget/component/PageTabs.tsx @@ -63,6 +63,7 @@ const StyleTabText = styled.div<{ text-overflow: ellipsis; white-space: nowrap; width: 100%; + line-height: initial; &.is-selected { color: ${(props) => props.accentColor};