From 095aaabf0a954b5d6875b16c08340d25398ed127 Mon Sep 17 00:00:00 2001 From: Kushagra Gour Date: Mon, 12 Feb 2018 22:23:48 +0530 Subject: [PATCH] style.css: fix firefox layout issue --- src/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/style.css b/src/style.css index 6ca59f2..0d95b69 100644 --- a/src/style.css +++ b/src/style.css @@ -209,6 +209,11 @@ body:not(.light-version).overlay-visible .main-container { transition-delay: 0.4s; filter: blur(3px); } +.content-wrap { + /* HACK: 70px is approx header+footer. This is required to because + on FF the content-wrap goes beyond the flex parent otherwise. */ + max-height: calc(100% - 70px); +} .code-side, .demo-side { flex-basis: inherit;