Skip to content

Commit

Permalink
fix(actionbar): chevrons are now relative to igo div
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-André Barbeau committed Oct 28, 2020
1 parent 571fa31 commit 2019da3
Showing 1 changed file with 12 additions and 1 deletion.
Expand Up @@ -76,13 +76,24 @@ igo-actionbar-item ::ng-deep mat-list-item:hover {
}

#topChevron {
position: fixed;
position: sticky;
top: 0;
background-color: white;
z-index: 3;

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
position: fixed;
top: unset;
}
@supports (-ms-accelerator:true) {
position: fixed;
top: unset;
}
}

#lowChevron {
position: fixed;
position: sticky;
bottom: 0;
background-color: white;
z-index: 3;
Expand Down

0 comments on commit 2019da3

Please sign in to comment.