Our flexible Kanban board for managing tasks with drag drop


Post by licjapodaca »

Hi there, is there a way to add some more space at the end of the column with the last task card like so:

Screen Shot 2021-06-23 at 6.10.38 p.m..png
Screen Shot 2021-06-23 at 6.10.38 p.m..png (121.15 KiB) Viewed 926 times

Regards


Post by johan.isaksson »

Hi,

The layout is all CSS, try for example margin-bottom on .b-taskboard-column-body

Best regards,
Johan Isaksson

Post by licjapodaca »

Hi @johan, that action only adds more space between task-column and column-toolbar like so:

Screen Shot 2021-06-24 at 12.43.10 p.m..png
Screen Shot 2021-06-24 at 12.43.10 p.m..png (363.48 KiB) Viewed 918 times

But I need to add more space between the last task-card and the end of task-column, like tell to the last task-card that adds more margin-bottom like 40px, how can I do that ?


Post by saki »

Try this:

.b-taskboard-column-body:after {
  content: '';
  height: 40px;
}

Post by licjapodaca »

Wooooww excellent @saki, great work!

Thanks it helps ...

Regards


Post Reply