Sha256: 95b25694c8cccc8b6f7ba7971b1776e5dd5717c4827c7c01efd8bdd6ff05bfd2
Contents?: true
Size: 787 Bytes
Versions: 1
Compression:
Stored size: 787 Bytes
Contents
// Context Syntax // ============== // Nested [function] // ----------------- // Return a subset grid for nested context. // - $context : <span> @function nested( $context ) { $context : parse-span($context); $span : span-get(span, $context); $location : span-get(location, $context); $columns : span-get(columns, $context); @return get-columns($span, $location, $columns); } // Nested [mixin] // -------------- // Use a subset grid for a nested context // - $context : <span> // - @content : <content> @mixin nested( $context ) { $context : parse-span($context); $old : susy-get(columns); $susy : map-merge($susy, (columns: nested($context))) !global; @content; $susy : map-merge($susy, (columns: $old)) !global; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
susy-2.0.0.alpha.5 | sass/susy/language/susy/_context.scss |