From 71d2790e15f96c861c356cebf31131ec967d297d Mon Sep 17 00:00:00 2001 From: Brett Mason Date: Tue, 20 Jun 2017 20:31:52 +0100 Subject: [PATCH] Fix menu wrapping issue Fixes issue identified with incorrect `wrap`/`nowrap` usage with the reworked menus. --- scss/components/_menu.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scss/components/_menu.scss b/scss/components/_menu.scss index c2e28019c..afe9e9a1f 100644 --- a/scss/components/_menu.scss +++ b/scss/components/_menu.scss @@ -47,7 +47,7 @@ $menu-item-background-hover: $light-gray !default; @if $global-flexbox { display: flex; - flex-wrap: nowrap; + flex-wrap: wrap; } li { @@ -160,7 +160,7 @@ $menu-item-background-hover: $light-gray !default; @mixin menu-direction($dir: horizontal) { @if $dir == horizontal { @if $global-flexbox { - flex-wrap: nowrap; + flex-wrap: wrap; flex-direction: row; } @else { @@ -171,7 +171,7 @@ $menu-item-background-hover: $light-gray !default; } @else if $dir == vertical { @if $global-flexbox { - flex-wrap: wrap; + flex-wrap: nowrap; flex-direction: column; } @else { -- 2.47.2