From 9fab492f66b7972afcd508a4aeab2f266e183c91 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 19 Mar 2012 12:37:53 -0600 Subject: [PATCH] Fix horizontal split inside top-level vertical split. --- static/atom.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/atom.css b/static/atom.css index 9cf813923..83013bb53 100644 --- a/static/atom.css +++ b/static/atom.css @@ -31,6 +31,11 @@ body { position: relative; } +/* hack workaround that shouldn't be needed when flexbox works right */ +.horizontal > .vertical { + height: 100%; +} + .horizontal > div { width: -webkit-flex(1); height: auto;