Sha256: 41dba70e7a1d7d24a1101ccc051f2430f421f1a85fc53344266918af0075d56a
Contents?: true
Size: 839 Bytes
Versions: 81
Compression:
Stored size: 839 Bytes
Contents
// Context Syntax // ============== // Nested [function] // ----------------- // Return a subset grid for nested context. // - $context : <span> @function nested( $context ) { $context : parse-span($context); $span : susy-get(span, $context); $location : get-location($context); $columns : susy-get(columns, $context); @return susy-slice($span, $location, $columns); } // Nested [mixin] // -------------- // Use a subset grid for a nested context // - $context : <span> // - @content : <content> @mixin nested( $context ) { $inspect : $context; $context : parse-span($context); $old : susy-get(columns); $susy : map-merge($susy, (columns: nested($context))) !global; @include susy-inspect(nested, $inspect); @content; $susy : map-merge($susy, (columns: $old)) !global; }
Version data entries
81 entries across 81 versions & 8 rubygems