Browse Source

fix(rn,bottomsheet) limit width

master
Saúl Ibarra Corretgé 4 years ago
parent
commit
0dcb8a025b
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      react/features/base/dialog/components/native/styles.js

+ 5
- 1
react/features/base/dialog/components/native/styles.js View File

43
         alignItems: 'stretch',
43
         alignItems: 'stretch',
44
         flex: 1,
44
         flex: 1,
45
         flexDirection: 'column',
45
         flexDirection: 'column',
46
-        justifyContent: 'flex-end'
46
+        justifyContent: 'flex-end',
47
+        maxWidth: 500,
48
+        marginLeft: 'auto',
49
+        marginRight: 'auto',
50
+        width: '100%'
47
     },
51
     },
48
 
52
 
49
     sheetItemContainer: {
53
     sheetItemContainer: {

Loading…
Cancel
Save