We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3669f5 commit c545db6Copy full SHA for c545db6
src/demo-app/a11y/a11y.ts
@@ -65,7 +65,9 @@ export class AccessibilityDemo implements OnDestroy {
65
this.currentComponent = nav ? nav.name : '';
66
67
let routerState = router.routerState.root;
68
- while (routerState.children.length) routerState = routerState.children[0];
+ while (routerState.children.length) {
69
+ routerState = routerState.children[0];
70
+ }
71
this.fullscreen = !!routerState.snapshot.data.fullscreen;
72
}
73
});
src/demo-app/a11y/sidenav/mobile-sidenav-a11y.scss
@@ -1,3 +1,4 @@
1
.a11y-demo-sidenav-header-fixed {
2
position: fixed;
3
+ z-index: 2;
4
0 commit comments