From: harry Date: Sun, 12 Feb 2017 11:22:17 +0000 (+0530) Subject: Added Parameters/mixin docs to overflow classes X-Git-Tag: v6.4.0-rc1~23^2~20^2~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff9f55dfda8856d598d4dcd354067b873bcc7996;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Added Parameters/mixin docs to overflow classes - overflow [] Overflow classes --- diff --git a/scss/prototype/_overflow.scss b/scss/prototype/_overflow.scss index b951d6891..4157eb287 100644 --- a/scss/prototype/_overflow.scss +++ b/scss/prototype/_overflow.scss @@ -16,14 +16,20 @@ $prototype-overflow-classes: ( visible, hidden, scroll ) !default; +/// Overflow classes, by default coming through a map `$prototype-overflow-classes` +/// @param {String} $overflow [] Overflow classes @mixin overflow($overflow) { overflow: $overflow; } +/// Overflow classes on horizontal axis, by default coming through a map `$prototype-overflow-classes` +/// @param {String} $overflow [] Overflow classes (horizontal axis) @mixin overflow-x($overflow) { overflow-x: $overflow; } +/// Overflow classes on vertical axis, by default coming through a map `$prototype-overflow-classes` +/// @param {String} $overflow [] Overflow classes (vertical axis) @mixin overflow-y($overflow) { overflow-y: $overflow; }