From 2e512854230998a98124c50273f8f35d449e2107 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Wed, 10 Feb 2016 01:36:01 +0100 Subject: [PATCH] possible fix for wrong wrapping of rows following each other on super wide screens --- _src/_assets/styles/bigchain/_sections.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_src/_assets/styles/bigchain/_sections.scss b/_src/_assets/styles/bigchain/_sections.scss index 9eb3afc..4bcc425 100644 --- a/_src/_assets/styles/bigchain/_sections.scss +++ b/_src/_assets/styles/bigchain/_sections.scss @@ -15,6 +15,11 @@ min-height: 420px; flex-wrap: wrap; + // HEADS UP! + // this fixes wrng wrapping of rows following each other + // BUT only in Chrome & Firefox, it destroys complete layout in Safari + //flex-flow: column; + .row { flex: 0 0 100%; }