We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d467e78 commit 5b3d275Copy full SHA for 5b3d275
1 file changed
src/frontend/src/pages/ProjectDetailPage/ProjectViewContainer/TaskList/v2/TaskColumn.tsx
@@ -85,11 +85,14 @@ export const TaskColumn = ({
85
<Box
86
sx={{
87
flex: 1,
88
+ display: 'flex',
89
+ flexDirection: 'column',
90
paddingTop: '8px',
91
paddingBottom: '16px',
92
backgroundColor: theme.palette.background.paper,
93
marginLeft: '5px',
- borderRadius: '5px'
94
+ borderRadius: '5px',
95
+ minHeight: isDragging ? `${equalizedHeight}px` : undefined
96
}}
97
>
98
<Typography align="center" variant="h5">
@@ -109,7 +112,7 @@ export const TaskColumn = ({
109
112
flexDirection: 'column',
110
113
borderRadius: 5,
111
114
padding: '5px',
- minHeight: isDragging ? `${equalizedHeight}px` : undefined,
115
+ flex: 1,
116
'&.isDraggingOver': {
117
bgcolor: '#dadadf'
118
}
0 commit comments