From f661bcd5231c026752cc3472d78f7dd3916cd272 Mon Sep 17 00:00:00 2001 From: Ken Hoes Date: Mon, 9 May 2016 12:46:34 -0400 Subject: [PATCH] Fixing flex layout issue w/ Safari --- awx/ui/client/src/shared/layouts/one-plus-two.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/shared/layouts/one-plus-two.less b/awx/ui/client/src/shared/layouts/one-plus-two.less index a296af7127..26633e2249 100644 --- a/awx/ui/client/src/shared/layouts/one-plus-two.less +++ b/awx/ui/client/src/shared/layouts/one-plus-two.less @@ -19,7 +19,7 @@ } .OnePlusTwo-left--panel(@height: 100%; @breakpoint: 900px) { - flex: 0 0; + flex: 1 0; height: @height; width: 100%; margin-right: 20px; @@ -34,7 +34,7 @@ .OnePlusTwo-right--panel(@height: 100%; @breakpoint: 900px) { height: @height; - flex: 1 0; + flex: 2 0; .Panel{ height: 100%; }