Sha256: 1b4576a425db057996c6a295f5ea8a4566b3e3640b3369a4f68eafc135b3e3d6
Contents?: true
Size: 896 Bytes
Versions: 87
Compression:
Stored size: 896 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
87 entries across 87 versions & 8 rubygems