Fix #1536 - pattern used in bootstrap is causing a recursion error

This commit is contained in:
Luke Page
2013-09-09 22:11:29 +01:00
parent 1f456ffc18
commit 4c552349e5
2 changed files with 12 additions and 2 deletions

View File

@@ -112,3 +112,12 @@ h3 { .margin_between(15px, 5px); }
&.large { .paddingFloat(((10em * 2) * 2)); }
}
.clearfix() {
// ...
}
.clearfix {
.clearfix();
}
.foo {
.clearfix();
}