feat: merge reminders.scss with component styles
This commit is contained in:
parent
0aff057f7b
commit
370186726a
3 changed files with 22 additions and 20 deletions
|
@ -104,3 +104,25 @@ export default {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</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>
|
|
@ -1,7 +1,6 @@
|
||||||
@import "tooltip";
|
@import "tooltip";
|
||||||
@import "labels";
|
@import "labels";
|
||||||
@import "list";
|
@import "list";
|
||||||
@import "reminders";
|
|
||||||
@import "switch-view";
|
@import "switch-view";
|
||||||
@import "task";
|
@import "task";
|
||||||
@import "taskRelations";
|
@import "taskRelations";
|
||||||
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue