From 9b044949311d5d68b771643233ba2ea059c9e5fd Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Wed, 25 Aug 2021 18:39:14 +0300 Subject: [PATCH] Set `viewer` style `overflow: "auto"` --- ui/src/components/TrafficPage.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/src/components/TrafficPage.tsx b/ui/src/components/TrafficPage.tsx index d2ec96dac..18901e659 100644 --- a/ui/src/components/TrafficPage.tsx +++ b/ui/src/components/TrafficPage.tsx @@ -18,7 +18,7 @@ const useLayoutStyles = makeStyles(() => ({ padding: "12px 24px", borderRadius: 4, marginTop: 15, - background: variables.headerBackgoundColor + background: variables.headerBackgoundColor, }, viewer: { @@ -26,7 +26,8 @@ const useLayoutStyles = makeStyles(() => ({ overflowY: 'auto', height: "calc(100% - 70px)", padding: 5, - paddingBottom: 0 + paddingBottom: 0, + overflow: "auto", } }));