CSS fix for the todo app

This commit is contained in:
yflory 2017-07-24 16:27:35 +02:00
parent 3efb9d21f5
commit 35635c3e2f
1 changed files with 7 additions and 0 deletions

View File

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