feat: divide most tasks.scss styles into components

- ShowTasks.vue
- List.vue
- defer-task.vue
- edit-task.vue
- Kanban.vue, relatedTasks.vue and singleTaskInView.vue
This commit is contained in:
Dominik Pschenitschni 2021-10-18 14:22:47 +02:00
parent e0fd5f8fe0
commit 14dd49e4b0
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
9 changed files with 498 additions and 457 deletions

View file

@ -299,6 +299,30 @@ $remove-icon-width: 24px;
text-align: center;
}
}
.task {
display: flex;
flex-wrap: wrap;
padding: .4rem;
transition: background-color $transition;
align-items: center;
cursor: pointer;
border-radius: $radius;
border: 2px solid transparent;
a {
color: $text;
transition: color ease $transition-duration;
&:hover {
color: $grey-900;
}
}
.remove {
color: $red;
}
}
}
.none {