Skip to content

Commit

Permalink
Allow to style card lister in column
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnyroeller committed Jan 19, 2024
1 parent 8dfb20e commit 08fbd82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/KanbanColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export interface KanbanColumnStyles
extends AddCardButtonStyles,
ColumnHeaderStyles {
column?: string;
columnCards?: string;
}

export interface KanbanColumnProps<
Expand Down Expand Up @@ -147,7 +148,7 @@ export function KanbanColumn<
renderActions={renderActions}
/>

<List className={classes.list}>
<List className={cx(classes.list, props.styles?.columnCards)}>
<div {...provided.droppableProps} ref={provided.innerRef}>
<InnerObjectsList
cards={column.cards}
Expand Down

0 comments on commit 08fbd82

Please sign in to comment.