Last active
December 20, 2015 17:59
-
-
Save babsgosgens/6172567 to your computer and use it in GitHub Desktop.
Helper mixin for source-ordering. Expects a fraction as a value.
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
@mixin move($fraction, $persistent: false) | |
{ | |
position: relative; | |
left: fraction-to-percentage($fraction); | |
@if $persistent and $column-breakpoint { | |
@include breakpoint( $column-breakpoint ) { | |
position: static; | |
position: initial; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment