From: Brett Mason Date: Fri, 8 Apr 2016 11:31:33 +0000 (+0100) Subject: Update param type and description X-Git-Tag: v6.2.2-rc1~70^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8543%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Update param type and description --- diff --git a/scss/grid/_position.scss b/scss/grid/_position.scss index f6fca13be..4d1bea5d4 100644 --- a/scss/grid/_position.scss +++ b/scss/grid/_position.scss @@ -8,7 +8,7 @@ /// Reposition a column. /// -/// @param {Number} $position - Direction and amount to move. The column will move equal to the width of the column count specified. A positive number will push the column to the right, while a negative number will pull it to the left. Set to "center" (without quotes) to center the column. +/// @param {Number|Keyword} $position - Direction and amount to move. The column will move equal to the width of the column count specified. A positive number will push the column to the right, while a negative number will pull it to the left. Set to center to center the column. @mixin grid-column-position($position) { @if type-of($position) == 'number' { $offset: percentage($position / $grid-column-count);