Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce authored Jan 22, 2023
1 parent 123e823 commit 40a0659
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Helium/gtk-3.0/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@

@if ($pixels > 0) {
// Workaround GTK clamping instead of rounding up
@return ($pixels / $text-size * 1rem) + 0.000000001rem;
@return (calc($pixels / $text-size) * 1rem) + 0.000000001rem;
} @else {
// Workaround GTK clamping instead of rounding up
@return ($pixels / $text-size * 1rem) - 0.000000001rem;
@return (calc($pixels / $text-size) * 1rem) - 0.000000001rem;
}
}

Expand Down

0 comments on commit 40a0659

Please sign in to comment.