[change] remove maxWidth from default View styles

View's default styles include `maxWidth:"100%"` to fix a specific
flexbox bug in Internet Explorer. But it's not needed for the default View
layout and it limits the width of absolutely positioned elements (a
bug).
This commit is contained in:
Nicolas Gallagher
2016-07-13 21:56:35 -07:00
parent 21eeafabd5
commit e1991f8f6b
-1
View File
@@ -142,7 +142,6 @@ const styles = StyleSheet.create({
// list reset
listStyle: 'none',
// fix flexbox bugs
maxWidth: '100%',
minHeight: 0,
minWidth: 0
},