Skip to content

Instantly share code, notes, and snippets.

@UltCombo
Created September 30, 2014 20:02
Show Gist options
  • Save UltCombo/2b512afa5536b1d7e018 to your computer and use it in GitHub Desktop.
Save UltCombo/2b512afa5536b1d7e018 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$helpers-name: (
fll: (
float: left
),
flr: (
float: right
)
);
@each $name, $ruleset in $helpers-name{
.h-#{$name} {
@each $prop, $value in $ruleset {
#{$prop}: $value;
}
}
}
.h-fll {
float: left;
}
.h-flr {
float: right;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment