From 831381a1ffe3cb96f1ec31895746748a21d1b452 Mon Sep 17 00:00:00 2001 From: Pranshu Chittora Date: Tue, 3 May 2022 21:27:44 +0530 Subject: [PATCH] fix: trace detail styling issue (#1043) --- frontend/src/container/AppLayout/styles.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/container/AppLayout/styles.ts b/frontend/src/container/AppLayout/styles.ts index adce85e295..71547d1592 100644 --- a/frontend/src/container/AppLayout/styles.ts +++ b/frontend/src/container/AppLayout/styles.ts @@ -11,4 +11,7 @@ export const Layout = styled(LayoutComponent)` export const ChildrenContainer = styled.div` margin: 0 1rem; + display: flex; + flex-direction: column; + height: 100%; `;