diff --git a/src/styles/components/kanban.scss b/src/styles/components/kanban.scss index 0e25f0612..9c2b4afeb 100644 --- a/src/styles/components/kanban.scss +++ b/src/styles/components/kanban.scss @@ -204,18 +204,26 @@ $filter-container-height: '1rem - #{$switch-view-height}'; } } } + + &.v-leave, &.v-leave-to, &.v-leave-active + &.move-card-leave, &.move-card-leave-to, &.move-card-leave-active { + display: none; + } } .ghost { - border-radius: $radius; - margin: 0 .5rem .5rem; background: transparent; border: 3px dashed $grey-300; + box-shadow: none; + + * { + opacity: 0; + } } } .move-card-move { - transition: transform 0s; + transition: transform $transition-duration; } .no-move { @@ -301,7 +309,7 @@ $filter-container-height: '1rem - #{$switch-view-height}'; } } -.ghost-task { +.task-dragging { transition: transform 0.18s ease; transform: rotateZ(3deg) }