Skip to content

Commit

Permalink
Merge pull request #2297 from Teradata/fix/app-shell-z-index
Browse files Browse the repository at this point in the history
Fix/app shell z index
  • Loading branch information
bsahitya authored Dec 12, 2024
2 parents 1c7db1c + 6d916e9 commit 33080e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libs/components/src/app-shell/app-shell.scss
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
position: sticky;
top: 0;
display: block;
z-index: 1;
z-index: var(--cv-app-shell-user-menu-z-index, 1);
}

[name='mini-list'] {
Expand Down Expand Up @@ -264,6 +264,10 @@ nav.navigation {
border-right: 0;
position: fixed;
background-color: var(--mdc-theme-background);
z-index: var(
--cv-app-shell-navigation-z-index,
2
); // must be greater than --cv-app-shell-user-menu-z-index

.toggle-drawer {
margin: 8px auto;
Expand Down

0 comments on commit 33080e6

Please sign in to comment.