Skip to content

Instantly share code, notes, and snippets.

@michelalbers
Last active February 25, 2016 12:36
Show Gist options
  • Save michelalbers/904c13e3ae1cf6136b31 to your computer and use it in GitHub Desktop.
Save michelalbers/904c13e3ae1cf6136b31 to your computer and use it in GitHub Desktop.
Divide spaced values in sass
.foo {
padding: 1px 1.5px;
}
// ----
// libsass (v3.2.5)
// ----
$foo: 10px 15px;
@mixin divider($value, $divisor) {
padding: nth($value, 1) / $divisor nth($value, 2) / $divisor;
}
.foo {
@include divider($foo, 10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment