From 9e922cd7b1d2de4fae25e3b08697f08f34b7a69b Mon Sep 17 00:00:00 2001 From: harry Date: Thu, 22 Jun 2017 23:07:54 +0530 Subject: [PATCH] Fix #10229 - Add align item center to `.menu.simple`! --- scss/components/_menu.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scss/components/_menu.scss b/scss/components/_menu.scss index afe9e9a1f..addbe0d2f 100644 --- a/scss/components/_menu.scss +++ b/scss/components/_menu.scss @@ -189,6 +189,10 @@ $menu-item-background-hover: $light-gray !default; /// @param {Keyword} $dir [$global-left] - Direction of the menu. This effects the side of the
  • that receives the margin. /// @param {Number} $margin [$menu-simple-margin] - The margin to apply to each
  • . @mixin menu-simple($dir: $global-left, $margin: $menu-simple-margin) { + @if $global-flexbox { + align-items: center; + } + li + li { margin-#{$dir}: $margin; } -- 2.47.2