1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-19 13:01:12 +02:00

style.css: fix firefox layout issue

This commit is contained in:
Kushagra Gour
2018-02-12 22:23:48 +05:30
parent 7cf8d99867
commit 095aaabf0a

View File

@@ -209,6 +209,11 @@ body:not(.light-version).overlay-visible .main-container {
transition-delay: 0.4s; transition-delay: 0.4s;
filter: blur(3px); 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, .code-side,
.demo-side { .demo-side {
flex-basis: inherit; flex-basis: inherit;