Merge pull request #83 from wad3g/81_flexbox-fix
Fix unitless flex-basis bug on some older devices (e.g. Samsung Galaxy)
This commit is contained in:
commit
e253f7cafe
1 changed files with 4 additions and 4 deletions
|
@ -111,8 +111,8 @@ legend {
|
|||
// New syntax
|
||||
-webkit-flex-grow: 1;
|
||||
flex-grow: 1;
|
||||
-webkit-flex-basis: 0;
|
||||
flex-basis: 0;
|
||||
-webkit-flex-basis: 0px;
|
||||
flex-basis: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -153,8 +153,8 @@ legend {
|
|||
// New syntax
|
||||
-webkit-flex-grow: 1;
|
||||
flex-grow: 1;
|
||||
-webkit-flex-basis: 0;
|
||||
flex-basis: 0;
|
||||
-webkit-flex-basis: 0px;
|
||||
flex-basis: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue