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
Currently the icon disappears while the viewport is 1280px wide even though NavBar is not visible yet (only appears at 1281px). Without the fix the icon is only visible while the viewport is 1279px wide. Changing the comparison to <= fixes it.
Calculation of the
appBarIconVisible
variable in theLayout
docs for Hiding icon in AppBar when permanentAt rule is active is off by one pixel.It should be:
instead of
Currently the icon disappears while the viewport is 1280px wide even though NavBar is not visible yet (only appears at 1281px). Without the fix the icon is only visible while the viewport is 1279px wide. Changing the comparison to
<=
fixes it.Here's the change diff:
The text was updated successfully, but these errors were encountered: