Skip to content

Commit

Permalink
docs: fix responsive (NG-ZORRO#3624)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendell authored and vthinkxie committed Jun 22, 2019
1 parent be9437f commit 283226e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/site/_site/doc/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 283226e

Please sign in to comment.