diff options
Diffstat (limited to 'src/components/Dialog/index.web.tsx')
-rw-r--r-- | src/components/Dialog/index.web.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 12bd8819b..c43e9c5c0 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -195,7 +195,13 @@ export function Inner({ onDismiss={close} style={{display: 'flex', flexDirection: 'column'}}> {header} - <View style={[gtMobile ? a.p_2xl : a.p_xl, contentContainerStyle]}> + <View + style={[ + gtMobile ? a.p_2xl : a.p_xl, + a.overflow_hidden, + a.rounded_md, + contentContainerStyle, + ]}> {children} </View> </DismissableLayer.DismissableLayer> |