Skip to content

Commit

Permalink
Add align-self utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Oct 16, 2017
1 parent b3887b6 commit 0feb1da
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 1 deletion.
100 changes: 100 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.

15 changes: 15 additions & 0 deletions src/generators/flex.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ export default function() {
'items-stretch': {
'align-items': 'stretch',
},
'self-start': {
'align-self': 'flex-start',
},
'self-end': {
'align-self': 'flex-end',
},
'self-center': {
'align-self': 'center',
},
'self-baseline': {
'align-self': 'baseline',
},
'self-stretch': {
'align-self': 'stretch',
},
'justify-start': {
'justify-content': 'flex-start',
},
Expand Down

0 comments on commit 0feb1da

Please sign in to comment.