fix: move createdUpdated styles to component #2685

Merged
konrad merged 1 commits from dpschen/frontend:feature/move-createdUpdated-styles-to-component into main 2022-11-12 10:50:50 +00:00
2 changed files with 8 additions and 6 deletions

View File

@ -46,3 +46,11 @@ const updatedFormatted = computed(() => formatDateLong(task.value.updated))
const doneSince = computed(() => formatDateSince(task.value.doneAt))
const doneFormatted = computed(() => formatDateLong(task.value.doneAt))
</script>
<style lang="scss" scoped>
.created {
font-size: .75rem;
color: var(--grey-500);
text-align: right;
}
</style>

View File

@ -995,12 +995,6 @@ $flash-background-duration: 750ms;
}
}
.created {
font-size: .75rem;
color: var(--grey-500);
text-align: right;
}
.checklist-summary {
padding-left: .25rem;
}