Skip to content

Commit

Permalink
Merge pull request #237 from CryptITAustria/fix-checkboxes-correct-fork
Browse files Browse the repository at this point in the history
Fix checkbox checked view
  • Loading branch information
CryptITAustria authored Jul 2, 2024
2 parents b828fd9 + edfbc42 commit 06e0dad
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/sentry-client-desktop/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,15 @@ body {
border-bottom: 2px black solid;
background-clip: padding-box;
}

.checkboxLabel input:before {
opacity: 0;
transition: opacity .25s ease-in-out;
}

.checkboxLabel input:checked:before {
opacity: 100;
}
}

@layer utilities {
Expand Down

0 comments on commit 06e0dad

Please sign in to comment.