Skip to content

Commit 2cb2242

Browse files
committed
fix minor issues
1 parent 907c110 commit 2cb2242

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/demo-app/a11y/a11y.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ export class AccessibilityDemo implements OnDestroy {
6565
this.currentComponent = nav ? nav.name : '';
6666

6767
let routerState = router.routerState.root;
68-
while (routerState.children.length) routerState = routerState.children[0];
68+
while (routerState.children.length) {
69+
routerState = routerState.children[0];
70+
}
6971
this.fullscreen = !!routerState.snapshot.data.fullscreen;
7072
}
7173
});
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.a11y-demo-sidenav-header-fixed {
22
position: fixed;
3+
z-index: 2;
34
}

0 commit comments

Comments
 (0)