Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

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 8af940d commit 85753c5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/docsearch-react/src/style.css
Original file line number Diff line number Diff line change
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 85753c5

Please sign in to comment.