From 273ab3d257b3fe7b5defd375ae9cf317e0e5384d Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Tue, 10 Aug 2021 10:41:52 -0300 Subject: [PATCH] fix: Safari is not showing scroll bars in Explore (#16089) --- .../src/explore/components/ExploreViewContainer.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/explore/components/ExploreViewContainer.jsx b/superset-frontend/src/explore/components/ExploreViewContainer.jsx index ce2b5b38256..27a6aa25ab9 100644 --- a/superset-frontend/src/explore/components/ExploreViewContainer.jsx +++ b/superset-frontend/src/explore/components/ExploreViewContainer.jsx @@ -81,7 +81,7 @@ const Styles = styled.div` text-align: left; position: relative; width: 100%; - height: 100%; + max-height: 100%; display: flex; flex-direction: row; flex-wrap: nowrap; @@ -448,6 +448,7 @@ function ExploreViewContainer(props) { margin-bottom: 0; } body { + height: 100vh; max-height: 100vh; overflow: hidden; } @@ -458,7 +459,7 @@ function ExploreViewContainer(props) { #app { flex-basis: 100%; overflow: hidden; - height: 100vh; + height: 100%; } #app-menu { flex-shrink: 0;