Skip to content

Commit

Permalink
fix(css): fixed Modal height undefined on Gecko
Browse files Browse the repository at this point in the history
  • Loading branch information
Shipow committed Jun 17, 2020
1 parent 2582dc7 commit 77a39a6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/style.css
Expand Up @@ -657,6 +657,7 @@ svg.DocSearch-Hit-Select-Icon {
}

.DocSearch-Container {
height: 100vh;
height: -webkit-fill-available;
position: absolute;
}
Expand All @@ -676,6 +677,7 @@ svg.DocSearch-Hit-Select-Icon {
.DocSearch-Modal {
border-radius: 0;
box-shadow: none;
height: 100vh;
height: -webkit-fill-available;
margin: 0;
max-width: 100%;
Expand Down

0 comments on commit 77a39a6

Please sign in to comment.