fix: modal close icon color in light mode on mobile

This commit is contained in:
kolaente 2022-03-22 22:55:23 +01:00
parent 09f6c0d43e
commit 63e04f874a
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -212,14 +212,14 @@ export default {
font-size: 2rem;
@media screen and (max-width: $desktop) {
color: var(--dark);
color: var(--grey-900);
}
}
</style>
<style lang="scss">
// Close icon SVG uses currentColor, change the color to keep it visible
.dark .task-detail-view-modal .close {
.dark .close {
color: var(--grey-900);
}
</style>