sass/susy/api/float/_container.scss in susy-2.0.0.alpha.2 vs sass/susy/api/float/_container.scss in susy-2.0.0.alpha.3
- old
+ new
@@ -1,12 +1,16 @@
-// Float container
-// ===============
+// Float Container API
+// ===================
-// Output a know float container
+// Float Container
+// ---------------
+// - [$width] : <length>
+// - [$justify] : left | center | right
+// - [$layout-math] : fluid | static
@mixin float-container(
$width : $container,
$justify : $container-position,
- $show-grids : $show-grids
+ $layout-math : $layout-math
) {
@include pie-clearfix;
- @include container-output($width, $justify, $show-grids);
+ @include container-output($width, $justify, $layout-math);
}