From ce9272821f887b4385c4e5e81445b7cd7201ac55 Mon Sep 17 00:00:00 2001 From: Wendell Date: Sat, 22 Jun 2019 13:40:38 +0800 Subject: [PATCH] docs: fix responsive --- scripts/site/_site/doc/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/site/_site/doc/app/app.component.ts b/scripts/site/_site/doc/app/app.component.ts index 4123898349..67ee66b7a4 100644 --- a/scripts/site/_site/doc/app/app.component.ts +++ b/scripts/site/_site/doc/app/app.component.ts @@ -242,7 +242,7 @@ export class AppComponent implements OnInit, AfterViewInit { map(() => window.innerWidth) ) .subscribe(width => { - const showDrawer = width <= 768; + const showDrawer = width <= 995; if (this.showDrawer !== showDrawer) { this.showDrawer = showDrawer; }