| OLD | NEW |
| 1 .flexbox { | 1 .flexbox { |
| 2 display: -webkit-flex; | 2 display: -webkit-flex; |
| 3 display: flex; | 3 display: flex; |
| 4 } | 4 } |
| 5 .inline-flexbox { | 5 .inline-flexbox { |
| 6 display: -webkit-inline-flex; | 6 display: -webkit-inline-flex; |
| 7 display: inline-flex; | 7 display: inline-flex; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .flex-none { | 10 .flex-none { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 justify-content: center; | 134 justify-content: center; |
| 135 } | 135 } |
| 136 .justify-content-space-between { | 136 .justify-content-space-between { |
| 137 -webkit-justify-content: space-between; | 137 -webkit-justify-content: space-between; |
| 138 justify-content: space-between; | 138 justify-content: space-between; |
| 139 } | 139 } |
| 140 .justify-content-space-around { | 140 .justify-content-space-around { |
| 141 -webkit-justify-content: space-around; | 141 -webkit-justify-content: space-around; |
| 142 justify-content: space-around; | 142 justify-content: space-around; |
| 143 } | 143 } |
| OLD | NEW |