Skip to content

Commit

Permalink
Fix zIndex overlay for search infos
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsible committed Aug 15, 2020
1 parent c59b170 commit e3666cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/app/core/menu/menu.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class MenuService {
private screenService: ScreenService
) {
// Do not display menu on small or touch screens
if (this.screenService.isInSmallView() || !!this.screenService.isInTouchScreen()) {
if (this.screenService.isInSmallView() || this.screenService.isInTouchScreen()) {
this.setMenuDisplay(false)
}

Expand Down
2 changes: 1 addition & 1 deletion client/src/sass/bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
content: '';
display: block;
position: fixed;
z-index: z('header');
z-index: z('header') - 1;
}
}
}
Expand Down

0 comments on commit e3666cf

Please sign in to comment.