feat: only show delete icons on hover
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
kolaente 2021-11-02 23:01:20 +01:00
parent 3e7edd84fa
commit 2933fdcd3d
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -367,9 +367,15 @@ $remove-icon-width: 24px;
width: $remove-icon-width;
text-align: center;
color: $red;
opacity: 0;
transition: opacity $transition;
}
}
}
&:hover .tasks .task .remove {
opacity: 1;
}
}
.none {