Skip to content

Commit

Permalink
Fix sticky board header
Browse files Browse the repository at this point in the history
- Make top fixed at 0
- Place in front
- Give white background
- Push down column headers to make room
  • Loading branch information
trslater committed Jun 10, 2024
1 parent 11b5607 commit b3246b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions alcs-frontend/src/app/features/board/board.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@

.board-header {
display: flex;
background-color: white;
justify-content: space-between;
align-items: center;
padding: 24px 80px 12px 76px;
position: sticky;
left: 0;
top: 0;
z-index: 1000;
}

.board-content {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
justify-content: center;
margin: 0 -2px 8px;
position: sticky;
top: 0;
top: 84px;
text-align: center;
z-index: 1000;
}
Expand Down

0 comments on commit b3246b5

Please sign in to comment.