Created
September 8, 2017 05:59
-
-
Save Tenderfeel/9778198750f30f5d28e7566324551d40 to your computer and use it in GitHub Desktop.
compass-flexbox-shorthands.scss
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
//http://compass-style.org/reference/compass/css3/flexbox/ | |
//http://jsdo.it/Tenderfeel/ofwd | |
@include flexbox(( | |
display: box, | |
box-orient: vertical, | |
box-pack: justify, | |
box-align: start | |
), $version: 1); | |
@include flexbox(( | |
display: flex, | |
flex-direction: row, | |
justify-content: space-between, | |
align-items: flex-start | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment