Fix minimum size of a column

pull/1/head
yflory 5 years ago
parent 84e3ed84a6
commit e9e65ae23b

@ -239,7 +239,7 @@
flex: 1;
overflow-y: auto;
justify-content: space-around;
min-height: 50px;
min-height: 38px; // Size of one card
}
header {
display: flex;

@ -600,7 +600,7 @@ define([
save();
if (!$input.val()) { return; }
if (!$(el).closest('.kanban-item').is(':last-child')) { return; }
$(el).closest('.kanban-board').find('.kanban-title-button.fa-plus').click();
$(el).closest('.kanban-board').find('.kanban-title-button').click();
return;
}
if (e.which === 27) {

Loading…
Cancel
Save