From: Kevin Ball Date: Thu, 1 Jun 2017 15:45:38 +0000 (-0700) Subject: Only base cell needs min width/height X-Git-Tag: v6.4.0-rc1~9^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be475075889289708d78e79f7bd126247ca27e5f;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Only base cell needs min width/height --- diff --git a/scss/xy-grid/_cell.scss b/scss/xy-grid/_cell.scss index 389e72a3d..a46a2cd8d 100644 --- a/scss/xy-grid/_cell.scss +++ b/scss/xy-grid/_cell.scss @@ -46,11 +46,11 @@ /// /// @param {Keyword} $size [full] - The size of your cell. Accepts `full`, `auto` or `shrink`. @mixin xy-cell-base($size: full) { - min-height: 0px; - min-width: 0px; @if($size == 'full') { // This is the base style, all others inherit from it flex: 0 0 auto; + min-height: 0px; + min-width: 0px; } @elseif ($size == 'auto') { flex: 1 1 auto;