Skip to content

Commit

Permalink
fix(layout): avoid sticky header gap (#11644)
Browse files Browse the repository at this point in the history
Co-authored-by: Claas Augner <495429+caugner@users.noreply.github.com>
  • Loading branch information
OnkarRuikar and caugner authored Dec 6, 2024
1 parent 8c5d1c9 commit ee6c092
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,8 @@ sup.new {

.sticky-header-container {
position: sticky;
top: 0;
// Avoid gap on certain zoom levels.
top: -1px;
z-index: var(--z-index-main-header);
}

Expand Down

0 comments on commit ee6c092

Please sign in to comment.