fix: kanban column margin should extend to bottom (#8394)

Fixes: #7868 

[Screencast from 2024-11-08
13-33-47.webm](https://github.com/user-attachments/assets/1de620d8-8f05-43f8-bde9-a2c9cbea4b9f)

---------

Co-authored-by: ehconitin <nitinkoche03@gmail.com>
This commit is contained in:
Harsh Singh
2024-11-08 19:25:45 +05:30
committed by GitHub
parent aa270950d9
commit 61cdc0e6da
2 changed files with 1 additions and 7 deletions

View File

@@ -26,8 +26,6 @@ const StyledContainer = styled.div`
display: flex;
flex: 1;
flex-direction: row;
min-height: calc(100% - 1px);
height: 100%;
`;
const StyledColumnContainer = styled.div`

View File

@@ -12,14 +12,10 @@ const StyledColumn = styled.div`
flex-direction: column;
max-width: 200px;
min-width: 200px;
padding: ${({ theme }) => theme.spacing(2)};
padding-top: 0px;
position: relative;
min-height: 100%;
height: 100%;
`;
type RecordBoardColumnProps = {