Skip to content

Commit

Permalink
add align-content helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hemphill authored and adamwathan committed Oct 16, 2017
1 parent b100236 commit 5a18601
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 1 deletion.
120 changes: 120 additions & 0 deletions dist/tailwind.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/tailwind.css.map

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions src/generators/flex.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,24 @@ export default function() {
'justify-around': {
'justify-content': 'space-around',
},
'align-center': {
'align-content': 'center',
},
'align-start': {
'align-content': 'flex-start',
},
'align-end': {
'align-content': 'flex-end',
},
'align-between': {
'align-content': 'space-between',
},
'align-around': {
'align-content': 'space-around',
},
'align-stretch': {
'align-content': 'stretch',
},
'flex-1': {
'flex': '1'
},
Expand Down

0 comments on commit 5a18601

Please sign in to comment.