fix: Safari is not showing scroll bars in Explore (#16089)

This commit is contained in:
Michael S. Molina 2021-08-10 10:41:52 -03:00 committed by GitHub
parent 07f33998ac
commit 273ab3d257
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@ const Styles = styled.div`
text-align: left; text-align: left;
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; max-height: 100%;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: nowrap; flex-wrap: nowrap;
@ -448,6 +448,7 @@ function ExploreViewContainer(props) {
margin-bottom: 0; margin-bottom: 0;
} }
body { body {
height: 100vh;
max-height: 100vh; max-height: 100vh;
overflow: hidden; overflow: hidden;
} }
@ -458,7 +459,7 @@ function ExploreViewContainer(props) {
#app { #app {
flex-basis: 100%; flex-basis: 100%;
overflow: hidden; overflow: hidden;
height: 100vh; height: 100%;
} }
#app-menu { #app-menu {
flex-shrink: 0; flex-shrink: 0;