Created
February 5, 2014 19:57
-
-
Save mhayes/8831755 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v0.7.0) | |
// ---- | |
// works in libsass, not in ruby sass | |
$text-direction: ltr; | |
$text-direction: ltr !default; | |
@if $text-direction == ltr { | |
$default-float: left !default; | |
$opposite-direction: right !default; | |
} @else { | |
$default-float: right !default; | |
$opposite-direction: left !default; | |
} | |
.default-float-style { | |
float: $default-float; | |
} | |
.opposite-direction-style { | |
float: $opposite-direction; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.default-float-style { | |
float: left; } | |
.opposite-direction-style { | |
float: right; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment