From c1434e6dfe3f27c32e76ce5d393c5ef71f16b8e0 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 15 May 2020 20:54:33 -0400 Subject: [PATCH] Remove the use of CSS `max` It's not supported on - Chromium 78 and older - Firefox 74 and older Reference: - https://developer.mozilla.org/en-US/docs/Web/CSS/max --- src/css/popup-fenix.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/popup-fenix.css b/src/css/popup-fenix.css index 8db91e390..2b1639c6a 100644 --- a/src/css/popup-fenix.css +++ b/src/css/popup-fenix.css @@ -525,7 +525,7 @@ body:not([data-more~="e"]) [data-more="e"] { line-height: 1.4; } :root.desktop #firewall { - max-height: max(100vh, 600px); + max-height: 600px; min-width: 360px; overflow-y: auto; width: min-content;