feature/move-styles-to-components #874

Merged
konrad merged 45 commits from dpschen/frontend:feature/move-styles-to-components into main 2021-10-21 19:11:18 +00:00
3 changed files with 22 additions and 20 deletions
Showing only changes of commit 725d6018b9 - Show all commits

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;
}
}
}