Created
January 13, 2013 15:05
-
-
Save scottkellum/4524510 to your computer and use it in GitHub Desktop.
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 grid-output($method) { | |
// default output methods | |
@if $method == float { | |
float: left; | |
// float styles. | |
} | |
@if $method == isolation { | |
float: left; | |
// float styles. | |
} | |
@container container; | |
} | |
// Add mixin extensions here. Might also be useful inside functions. | |
@fill container { | |
@if $method == table-cell { | |
// extend foo function with list output. | |
} | |
} | |
@fill container { | |
@if $method == grid-layout { | |
// extend foo function with list output. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment