From 712954560a7dfc2a580a6710ceda835138c3155e Mon Sep 17 00:00:00 2001 From: BK <4480581+Bilal-io@users.noreply.github.com> Date: Sun, 15 May 2022 14:17:25 -0700 Subject: [PATCH] fixes version switcher height The panel expands to a max-height of 600, and shrinks to 100vh - 100px on browsers with height smaller than 600px. --- docs/assets/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/assets/style.css b/docs/assets/style.css index 7c7b8db1b..25b8c2e86 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -540,6 +540,7 @@ ul.fas li .fa-large:before, ul.fas li .fa-large:before { bottom: 20px; display: block; left: auto; + height: calc(100vh - 100px); max-height: 600px; max-width: 300px; overflow: hidden;