diff --git a/static/app/views/organizationLayout/index.tsx b/static/app/views/organizationLayout/index.tsx index 93fa4b85eb469e..00592211d4b743 100644 --- a/static/app/views/organizationLayout/index.tsx +++ b/static/app/views/organizationLayout/index.tsx @@ -81,7 +81,9 @@ function LegacyAppLayout({children, organization}: LayoutProps) { const AppContainer = styled('div')` display: flex; - flex-direction: row; + @media (min-width: ${p => p.theme.breakpoints.medium}) { + flex-direction: row; + } `; const BodyContainer = styled('div')`