From 697f9b21b0782edfb525c546825b404c2d160d54 Mon Sep 17 00:00:00 2001 From: ZeJ0hn <38920448+ZeJ0hn@users.noreply.github.com> Date: Fri, 8 Feb 2019 13:25:56 -0800 Subject: [PATCH 1/2] Update README.md Fix example that didn't work --- packages/drawer/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/drawer/README.md b/packages/drawer/README.md index 82aee4117..08a0408f9 100644 --- a/packages/drawer/README.md +++ b/packages/drawer/README.md @@ -212,7 +212,7 @@ export default class App extends Component {
- + @@ -255,6 +255,11 @@ You will also need these styles: flex: auto; overflow: auto; } + +.top-app-bar-fix-adjust { + display: flex; + width: 100%; +} ``` There is a known issue with the dismissible drawer styles when putting the drawer below the top app bar. To get around this, you must update the `.mdc-drawer--dismissible` class in your CSS stylesheets. From a426452380af69cf4876e83282522dc4cd723f79 Mon Sep 17 00:00:00 2001 From: Matt Goo Date: Fri, 8 Feb 2019 13:52:47 -0800 Subject: [PATCH 2/2] Update README.md --- packages/drawer/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/drawer/README.md b/packages/drawer/README.md index 08a0408f9..0bb641e9a 100644 --- a/packages/drawer/README.md +++ b/packages/drawer/README.md @@ -257,8 +257,8 @@ You will also need these styles: } .top-app-bar-fix-adjust { - display: flex; - width: 100%; + display: flex; + width: 100%; } ```