- Clear stage before moving to a sub-sub branch.
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { groupBy } from "lodash";
|
||||
import fakeData from "./testData/board600.json";
|
||||
import fakeData from "./testData/board300.json";
|
||||
|
||||
const sortByParentId = (arr) => {
|
||||
// return arr.reduce((accumulator, currentValue) => {
|
||||
|
||||
15881
client/src/components/production-board-kanban/testData/board300.json
Normal file
15881
client/src/components/production-board-kanban/testData/board300.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -83,9 +83,27 @@ export const StyleVertical = styled.div`
|
||||
min-height: 50px; // Not needed, just for extra landing space
|
||||
}
|
||||
.smooth-dnd-container.horizontal {
|
||||
white-space: normal;
|
||||
// TODO: This is what is currently providing us multi row cols, and may need to be adjusted with new DND Library
|
||||
display: flex; /* Allows wrapping */
|
||||
flex-wrap: wrap; /* Allows wrapping */
|
||||
//background-color: yellow !important;
|
||||
}
|
||||
.smooth-dnd-ghost {
|
||||
//background-color: red !important;
|
||||
}
|
||||
.react-trello-card {
|
||||
//background-color: orange !important;
|
||||
margin: 5px;
|
||||
// TODO: This is what is currently providing us multi row cols, and may need to be adjusted with new DND Library
|
||||
flex: 0 1 auto;
|
||||
}
|
||||
.smooth-dnd-stretcher-element {
|
||||
//background-color: purple !important;
|
||||
}
|
||||
.smooth-dnd-draggable-wrapper {
|
||||
//background-color: blue !important;
|
||||
flex: 0 1 auto; /* Allows items to grow and shrink */
|
||||
}
|
||||
|
||||
.react-trello-board {
|
||||
overflow-y: hidden !important;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user