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
There was an issue with display: inline-* that I see fixed, but pretty much the same goes for display: flex. It gets replaced with display: block and this leads to wrong height.
Both lines :
if (display !== 'inline-block' && display !== 'inline-flex')
should become
if (display !== 'inline-block' && display !== 'flex' && display !== 'inline-flex')
The text was updated successfully, but these errors were encountered:
There was an issue with display: inline-* that I see fixed, but pretty much the same goes for display: flex. It gets replaced with display: block and this leads to wrong height.
Both lines :
if (display !== 'inline-block' && display !== 'inline-flex')
should become
if (display !== 'inline-block' && display !== 'flex' && display !== 'inline-flex')
The text was updated successfully, but these errors were encountered: