fix: progress bar alignment in task list
This commit is contained in:
parent
1eaca64e2a
commit
fbcf587e93
1 changed files with 6 additions and 2 deletions
|
@ -171,7 +171,7 @@ export default defineComponent({
|
||||||
taskDetailRoute() {
|
taskDetailRoute() {
|
||||||
return {
|
return {
|
||||||
name: 'task.detail',
|
name: 'task.detail',
|
||||||
params: { id: this.task.id },
|
params: {id: this.task.id},
|
||||||
// TODO: re-enable opening task detail in modal
|
// TODO: re-enable opening task detail in modal
|
||||||
// state: { backdropView: this.$router.currentRoute.value.fullPath },
|
// state: { backdropView: this.$router.currentRoute.value.fullPath },
|
||||||
}
|
}
|
||||||
|
@ -365,5 +365,9 @@ export default defineComponent({
|
||||||
border-left-color: var(--grey-300);
|
border-left-color: var(--grey-300);
|
||||||
border-bottom-color: var(--grey-300);
|
border-bottom-color: var(--grey-300);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.progress {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in a new issue