Sha256: 1d9e4ec1bd36c71ffa97604c20b36f935bd6ec2abecf6a91e80de2165a86d176
Contents?: true
Size: 698 Bytes
Versions: 24
Compression:
Stored size: 698 Bytes
Contents
// Float Ends API // ============== // Susy End Defaults // ----------------- // - PRIVATE @include susy-defaults(( last-flow: to, )); // Float Last // ---------- // - [$flow] : ltr | rtl @mixin float-last( $flow: map-get($susy-defaults, flow), $last-flow: map-get($susy-defaults, last-flow), $margin: 0 ) { $to: to($flow); $output: ( float: if($last-flow == to, $to, null), margin-#{$to}: $margin, ); @include output($output); } // Float First // ----------- // - [$flow] : ltr | rtl @mixin float-first( $flow: map-get($susy-defaults, flow) ) { $output: ( margin-#{from($flow)}: 0, ); @include output($output); }
Version data entries
24 entries across 24 versions & 3 rubygems