Last active
August 29, 2015 14:01
-
-
Save antife-yinyue/828587ab15a83f7d738d to your computer and use it in GitHub Desktop.
This file contains 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
@import 'base.sass/+'; | |
// Specify supports | |
$browser-supports: parse-rules('last 5 versions'); | |
.fn-clear { | |
@include clearfix; | |
} | |
.fn-left { | |
@include float(left, true); | |
} | |
.fn-right { | |
@include float(right, true); | |
} | |
.fn-show { | |
display: block !important; | |
} | |
.fn-hide { | |
display: none !important; | |
} | |
.fn-invisible { | |
visibility: hidden !important; | |
} | |
.fn-text-overflow { | |
@include ellipsis-overflow; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment