From 66dca2a78cea9724ce694ff80f7573b68ee3331a Mon Sep 17 00:00:00 2001 From: Kurtis Jantzen Date: Tue, 14 Aug 2018 12:04:00 -0600 Subject: [PATCH] Document breakpoint argument for withMobileDialog Add a sentence describing how one might choose their own breakpoint for their dialog to become full screen. --- docs/src/pages/demos/dialogs/dialogs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/demos/dialogs/dialogs.md b/docs/src/pages/demos/dialogs/dialogs.md index 917137c81d9b1a..daf37541b8707d 100644 --- a/docs/src/pages/demos/dialogs/dialogs.md +++ b/docs/src/pages/demos/dialogs/dialogs.md @@ -67,7 +67,7 @@ For example, if your site prompts for potential subscribers to fill in their ema ## Responsive full-screen -You may make a `Dialog` responsively full screen the dialog using `withMobileDialog`. By default, `withMobileDialog()(Dialog)` responsively full screens *at or below* the `sm` [screen size](/layout/basics). +You may make a `Dialog` responsively full screen the dialog using `withMobileDialog`. By default, `withMobileDialog()(Dialog)` responsively full screens *at or below* the `sm` [screen size](/layout/basics). You can choose your own breakpoint for example `xs` by passing the `breakpoint` argument: `withMobileDialog({breakpoint: 'xs'})(Dialog)`. {{"demo": "pages/demos/dialogs/ResponsiveDialog.js"}}