Skip to content

Commit

Permalink
Fixes #7105: Fixed column header on Kanban boards
Browse files Browse the repository at this point in the history
  • Loading branch information
dilshad-knk committed Sep 25, 2024
1 parent c9e882f commit 836d44d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const StyledHeader = styled.div`
display: flex;
flex-direction: row;
justify-content: left;
margin-bottom: ${({ theme }) => theme.spacing(2)};
padding-bottom: 25px;
width: 100%;
`;

Expand All @@ -45,9 +45,13 @@ const StyledHeaderActions = styled.div`
margin-left: auto;
`;
const StyledHeaderContainer = styled.div`
background: ${({ theme }) => theme.background.primary};
display: flex;
height: 40px;
justify-content: space-between;
position: fixed;
width: 100%;
padding-top: 10px;
`;
const StyledLeftContainer = styled.div`
align-items: center;
Expand Down

0 comments on commit 836d44d

Please sign in to comment.