feat: merge reminders.scss with component styles

This commit is contained in:
Dominik Pschenitschni 2021-10-18 14:21:43 +02:00
parent 69aaf31b28
commit 725d6018b9
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
3 changed files with 22 additions and 20 deletions

View File

@ -104,3 +104,25 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.reminders {
.reminder-input {
display: flex;
align-items: center;
&.overdue ::v-deep.datepicker a.show {
color: $red;
}
&:last-child {
margin-bottom: 0.75rem;
}
a.remove {
color: $red;
padding-left: .5rem;
}
}
}
</style>

View File

@ -1,7 +1,6 @@
@import "tooltip";
@import "labels";
@import "list";
@import "reminders";
@import "switch-view";
@import "task";
@import "taskRelations";

View File

@ -1,19 +0,0 @@
.reminders {
.reminder-input {
display: flex;
align-items: center;
&.overdue .datepicker a.show {
color: $red;
}
&:last-child {
margin-bottom: 0.75rem;
}
a.remove {
color: $red;
padding-left: .5rem;
}
}
}