Skip to content

Commit

Permalink
Fix flexbox in Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
mixonic committed Aug 3, 2015
1 parent b96d75e commit 058155a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions demo/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,16 @@ p {

.container {
margin: 0.5rem 0 0;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
}

.col-container {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
}

Expand All @@ -75,10 +79,12 @@ hr {
}

.pane {
-webkit-flex: 1;
flex: 1;
}

.row {
-webkit-flex: 1;
flex: 1;
}

Expand Down

0 comments on commit 058155a

Please sign in to comment.