You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the elements which have line-height written as a float number there is an issue in calculation, due to truncation of decimal part.
e.g. for line-height: 18.5667px parseInt('18.5667px', 10) // 18 parseFloat('18.5667px') // 18.5667
Suggestion is to update how maximumHeight is calculated:
For the elements which have line-height written as a float number there is an issue in calculation, due to truncation of decimal part.
e.g. for line-height: 18.5667px
parseInt('18.5667px', 10) // 18
parseFloat('18.5667px') // 18.5667
Suggestion is to update how
maximumHeight
is calculated:The text was updated successfully, but these errors were encountered: