Mobile: Toolbar editor: Fix toolbar editor dismiss button is rendered outside the dialog on small screens (#13976)

This commit is contained in:
Henry Heino
2025-12-23 19:40:38 +00:00
committed by GitHub
parent 37c3d24650
commit 6f3781f27a
@@ -67,6 +67,10 @@ const useStyles = (themeId: number, containerStyle: ViewStyle, size: DialogVaria
alignSelf: 'center',
},
heading: {
// Without flexShrink/flexGrow, the heading can push the close button
// outside of the dialog.
flexShrink: 1,
flexGrow: 1,
},
modalBackground: {
justifyContent: 'center',