Sha256: 8754e88f964cacfb7f2b1692bd7e0491d3c4da08dfb7c4b5d02c0cfcd832d45e
Contents?: true
Size: 931 Bytes
Versions: 24
Compression:
Stored size: 931 Bytes
Contents
// Float Span API // ============== // Float Span Output // ----------------- // - $width : <length> // - [$float] : from | to // - [$margin-before] : <length> // - [$margin-after] : <length> // - [$padding-before] : <length> // - [$padding-after] : <length> // - [$flow] : ltr | rtl @mixin float-span-output( $width, $float : from, $margin-before : null, $margin-after : null, $padding-before : null, $padding-after : null, $flow : map-get($susy-defaults, flow) ) { $to : to($flow); $from : from($flow); $output: ( width: $width, float: if($float == to, $to, null) or if($float == from, $from, null), margin-#{$from}: $margin-before, margin-#{$to}: $margin-after, padding-#{$from}: $padding-before, padding-#{$to}: $padding-after, ); @include output($output); }
Version data entries
24 entries across 24 versions & 3 rubygems