Skip to content

Commit

Permalink
fix the flex grid in older browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
connors committed Oct 31, 2015
1 parent 39bc69d commit 14b3c66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/assets/css/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ a {
}

.col-group {
display: -webkit-flex;
display: -ms-flex;
display: flex;
}

Expand Down
2 changes: 1 addition & 1 deletion docs/assets/css/docs.min.css

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

2 changes: 2 additions & 0 deletions sass/docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ a {
}

.col-group {
display: -webkit-flex; // Make the grid work in older Safari browsers
display: -ms-flex; // Make the grid work in older IE browsers
display: flex
}

Expand Down

0 comments on commit 14b3c66

Please sign in to comment.