CSS fix for the todo app

This commit is contained in:
yflory 2017-07-24 16:27:35 +02:00
parent 3efb9d21f5
commit 35635c3e2f

View File

@ -33,10 +33,17 @@ body {
padding: 20px; padding: 20px;
align-items: center; align-items: center;
background-color: lighten(@toolbar-todo-bg, 15%); background-color: lighten(@toolbar-todo-bg, 15%);
min-height: 0;
} }
@spacing: 15px; @spacing: 15px;
#tasksList {
flex: 1;
min-height: 0;
overflow-y: auto,
}
.cp-create-form { .cp-create-form {
margin: @spacing; margin: @spacing;
} }