feat: add task drag and drop
This commit is contained in:
@ -158,8 +158,15 @@ textarea {
|
||||
.board-column {
|
||||
min-height: 20rem;
|
||||
padding: 1rem;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 0.75rem;
|
||||
background: #e5e7eb;
|
||||
transition: border-color 120ms ease, background-color 120ms ease;
|
||||
}
|
||||
|
||||
.board-column-drop-target {
|
||||
border-color: #93c5fd;
|
||||
background: #e0e7ff;
|
||||
}
|
||||
|
||||
.board-column h2 {
|
||||
@ -180,6 +187,14 @@ textarea {
|
||||
box-shadow: 0 0.125rem 0.4rem rgb(0 0 0 / 8%);
|
||||
}
|
||||
|
||||
.task-card-pending {
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
.task-card-dragging {
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.task-card h3,
|
||||
.task-card p {
|
||||
margin: 0;
|
||||
|
||||
Reference in New Issue
Block a user