From 77a39a6a5dc2755f5ca5b2c308f35515f7dccde8 Mon Sep 17 00:00:00 2001 From: Shipow Date: Wed, 17 Jun 2020 17:04:22 +0200 Subject: [PATCH] fix(css): fixed Modal height undefined on Gecko --- src/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/style.css b/src/style.css index 38bd8a34..b3444f50 100644 --- a/src/style.css +++ b/src/style.css @@ -657,6 +657,7 @@ svg.DocSearch-Hit-Select-Icon { } .DocSearch-Container { + height: 100vh; height: -webkit-fill-available; position: absolute; } @@ -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%;