Skip to content

Instantly share code, notes, and snippets.

@brianjhanson
Created August 25, 2015 21:38
Show Gist options
  • Save brianjhanson/965003a70d82d8fee7df to your computer and use it in GitHub Desktop.
Save brianjhanson/965003a70d82d8fee7df to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$spacing: (
xs: 2.5rem,
s: 4rem,
m: 6rem,
l: 8rem,
xl: 10rem
);
@function get-prev($key, $map: $spacing) {
$values: map-values($map);
$keys: map-keys($map);
$idx: index($keys, $key);
@return nth($values, ($idx - 1));
}
.something {
test: get-prev(s);
}
.something {
test: 2.5rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment