Files
worklenz/worklenz-frontend/src/components/enhanced-kanban/EnhancedKanbanBoard.css
shancds 4f7cbf3527 feat(enhanced-kanban): enhance EnhancedKanbanBoard with new task creation options and layout adjustments
- Updated the EnhancedKanbanBoard component to include a new section for creating tasks at both the top and bottom of each group.
- Adjusted the CSS for the kanban groups container to improve layout responsiveness.
- Refactored EnhancedKanbanGroup to manage task creation visibility and interactions more effectively, enhancing user experience during task management.
2025-06-24 12:24:54 +05:30

43 lines
855 B
CSS

.enhanced-kanban-board {
width: 100%;
height: 100%;
overflow-x: auto;
overflow-y: hidden;
padding: 16px;
background: var(--ant-color-bg-container);
color: var(--ant-color-text);
}
.kanban-groups-container {
display: flex;
gap: 16px;
min-height: calc(100vh - 350px);
padding-bottom: 16px;
}
/* Ensure groups have proper spacing for drop indicators */
.enhanced-kanban-group {
flex-shrink: 0;
}
/* Smooth transitions for all drag and drop interactions */
.enhanced-kanban-board * {
transition: all 0.2s ease;
}
/* Loading state */
.enhanced-kanban-board .ant-spin {
display: flex;
justify-content: center;
align-items: center;
min-height: 200px;
}
/* Empty state */
.enhanced-kanban-board .ant-empty {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 200px;
}