Skip to content

Commit

Permalink
fix deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio authored and kas-catholic committed Jun 26, 2024
1 parent e26fc3f commit ba7e3cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ExamineItem.scss
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ $md-checkbox-label-padding: 0.75rem;

transform: translate(
$md-checkbox-padding,
($md-checkbox-size / 2) - ($md-checkmark-size / 2.6)
calc($md-checkbox-size / 2) - calc($md-checkmark-size / 2.6)
)
rotate(-45deg);
width: $md-checkmark-size;
height: $md-checkmark-size / 2;
height: calc($md-checkmark-size / 2);

border: $md-checkmark-width solid $md-checkmark-color;
border-top-style: none;
Expand Down

0 comments on commit ba7e3cf

Please sign in to comment.