We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a784221 commit a38269eCopy full SHA for a38269e
less/variables.less
@@ -37,17 +37,21 @@
37
38
// mixins
39
.border-radius(@r){
40
- border-radius: @r;
41
- -moz-border-radius: @r;
42
- -webkit-border-radius: @r;
+ border-radius: @r;
+ -moz-border-radius: @r;
+ -webkit-border-radius: @r;
43
}
44
.flex-holder(){
45
- display: flex;
46
- flex-wrap: wrap;
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
47
+ display: -ms-flexbox; /* TWEENER - IE 10 */
48
+ display: -webkit-flex; /* NEW - Chrome */
49
+ display: flex;
50
+ flex-wrap: wrap;
51
52
.flex-item(){
- box-sizing: border-box;
- flex-grow: 1;
53
+ box-sizing: border-box;
54
+ flex-grow: 1;
55
56
57
.panel-top-bar(){
0 commit comments