]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Added Parameters/mixin docs to overflow classes
authorharry <harmanmanchanda182@gmail.com>
Sun, 12 Feb 2017 11:22:17 +0000 (16:52 +0530)
committerharry <harmanmanchanda182@gmail.com>
Sun, 12 Feb 2017 11:22:17 +0000 (16:52 +0530)
- overflow [] Overflow classes

scss/prototype/_overflow.scss

index b951d6891a4b4e302710b4624f05a3a1d9b06514..4157eb2876666f98ef3b6bdda6a8df830eba1a74 100644 (file)
@@ -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;
 }