Skip to content

Commit

Permalink
Invert filter for dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
SwikritiT committed Apr 5, 2022
1 parent 26da1cb commit 74b91ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/views/ProjectsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class="linked-workpackages">
<div class="linked-workpackages--workpackage">
<WorkPackage :workpackage="workpackage" />
<img class="linked-workpackages--workpackage--unlink" :src="unlinkSvg">
<div class="linked-workpackages--workpackage--unlink icon-noConnection" />
</div>
<div :class="{ 'workpackage-seperator': index !== workpackages.length-1 }" />
</div>
Expand Down Expand Up @@ -198,4 +198,8 @@ export default {
border-bottom: 1px solid rgb(237 237 237);
}
}
body.theme--dark .linked-workpackages--workpackage--unlink{
filter: invert(100%);
}
</style>

0 comments on commit 74b91ea

Please sign in to comment.