Fix minimum size of a column
This commit is contained in:
parent
84e3ed84a6
commit
e9e65ae23b
@ -239,7 +239,7 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
min-height: 50px;
|
min-height: 38px; // Size of one card
|
||||||
}
|
}
|
||||||
header {
|
header {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
@ -600,7 +600,7 @@ define([
|
|||||||
save();
|
save();
|
||||||
if (!$input.val()) { return; }
|
if (!$input.val()) { return; }
|
||||||
if (!$(el).closest('.kanban-item').is(':last-child')) { 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;
|
return;
|
||||||
}
|
}
|
||||||
if (e.which === 27) {
|
if (e.which === 27) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user