Unquote the float argument for backwards compatibility.

This commit is contained in:
Chris Eppstein 2010-04-26 09:57:31 -07:00
parent bfed16a63b
commit 56b2353335

View File

@ -14,4 +14,4 @@
// Available as alternate syntax with just +float
@mixin float($side: left) {
display: inline;
float: $side; }
float: unquote($side); }