Skip to content

Instantly share code, notes, and snippets.

@morganney
Last active January 8, 2017 20:43
Show Gist options
  • Save morganney/690fac54c22f76389d28e39e00109289 to your computer and use it in GitHub Desktop.
Save morganney/690fac54c22f76389d28e39e00109289 to your computer and use it in GitHub Desktop.
.cell-styles(@n, @i: 1) when (@i <= @n) {
.cell-@{i} {
width: (100% / @i);
height: (100% / @i);
}
.cell-styles(@n, (@i + 1));
}
.cell-styles(80);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment