Skip to content

Commit

Permalink
Support more justify content attribute (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
roderickhsiao authored and redonkulus committed Sep 11, 2019
1 parent cc891cc commit dcb51db
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/rules.js
Expand Up @@ -1369,11 +1369,16 @@ module.exports = [
"justify-content": "$0"
},
"arguments": [{
/* Positional alignment */
"fs": "flex-start",
"fe": "flex-end",
"c": "center",

/* Distributed alignment */
"sb": "space-between",
"sa": "space-around"
"sa": "space-around",
"se": "space-evenly",
"s": "stretch"
}]
},
// flex-wrap
Expand Down

0 comments on commit dcb51db

Please sign in to comment.