forked from anasnakawa/bi-app-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add !important support to float mixin anasnakawa#10
- Loading branch information
Showing
3 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
// ------------------------------------------ | ||
// left to right variables to be used by bi-app mixins | ||
// authors: | ||
// authors: | ||
// twitter.com/anasnakawa | ||
// twitter.com/victorzamfir | ||
// licensed under the MIT license | ||
// licensed under the MIT license | ||
// http://www.opensource.org/licenses/mit-license.php | ||
// ------------------------------------------ | ||
|
||
// namespacing variables with bi-app to | ||
// avoid conflicting with other global variables | ||
$bi-app-left : left; | ||
$bi-app-right : right; | ||
$bi-app-direction : ltr; | ||
$bi-app-invert-direction: rtl; | ||
$bi-app-right : right; | ||
$bi-app-direction : ltr; | ||
$bi-app-invert-direction : rtl; | ||
$imp : !important; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
// ------------------------------------------ | ||
// right to left variables to be used by bi-app mixins | ||
// authors: | ||
// authors: | ||
// twitter.com/anasnakawa | ||
// twitter.com/victorzamfir | ||
// licensed under the MIT license | ||
// licensed under the MIT license | ||
// http://www.opensource.org/licenses/mit-license.php | ||
// ------------------------------------------ | ||
|
||
// namespacing variables with bi-app to | ||
// avoid conflicting with other global variables | ||
$bi-app-left : right; | ||
$bi-app-right : left; | ||
$bi-app-direction : rtl; | ||
$bi-app-invert-direction: ltr; | ||
$bi-app-right : left; | ||
$bi-app-direction : rtl; | ||
$bi-app-invert-direction : ltr; | ||
$imp : !important; |