You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
354 B
16 lines
354 B
15 years ago
|
// based on compass float
|
||
|
|
||
|
@import modules/_clearfix.sass
|
||
|
|
||
|
// Available as alternate syntax with just +float
|
||
|
=float(!side = "left")
|
||
|
:display inline
|
||
|
:float= !side
|
||
|
|
||
|
// Implementation of float:left with fix for double-margin bug
|
||
|
=float-left
|
||
|
+float("left")
|
||
|
|
||
|
// Implementation of float:right with fix for double-margin bug
|
||
|
=float-right
|
||
|
+float("right")
|