Skip to content

Commit f829710

Browse files
committed
style
1 parent d2ecb9d commit f829710

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

static/app/views/insights/pages/conversations/components/conversationView.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function ConversationView({
151151
}
152152

153153
return (
154-
<Flex flex="1" minHeight="0">
154+
<Flex flex="1" minHeight="0" overflow="hidden">
155155
<LeftPanel>
156156
<StyledTabs
157157
value={activeTab}
@@ -297,6 +297,9 @@ function LeftPanel({children}: {children: React.ReactNode}) {
297297

298298
const StyledTabs = styled(Tabs)`
299299
min-height: 0;
300+
height: 100%;
301+
display: flex;
302+
flex-direction: column;
300303
`;
301304

302305
const FullWidthTabPanels = styled(TabPanels)`

0 commit comments

Comments
 (0)