- fix it: Order List Todo

- Split Todo List by Priority and by Completed
- Animation drag
This commit is contained in:
Paolo Arena
2019-01-27 19:09:48 +01:00
parent ce9f901b0a
commit 83420447d3
10 changed files with 651 additions and 138 deletions

View File

@@ -1,8 +1,8 @@
.flex-container{
background-color: #ccc;
background-color: rgb(250, 250, 250);
padding: 5px;
display: flex;
flex-flow: row nowrap;
flex-flow: row;
justify-content: space-between;
}
@@ -11,3 +11,22 @@
.mycard {
visibility: hidden;
}
.myitemdrag {
padding: 2px;
margin-top: 4px;
border: solid 1px #ccc;
transition: all .4s;
}
.myitemdrag-enter, .myitemdrag-leave-active {
opacity: 0;
}
.drag {
background-color: green;
}
.dragArea {
min-height: 10px;
}