Closed knubie closed 8 years ago
Previously the nav would flicker when hovering out due to the max-width transitioning from max-width: $max-width*(6/$grid-columns); to an undefined max-width. This only seems to be noticeable in Safari, but was quite bothersome!
max-width: $max-width*(6/$grid-columns);
max-width
Adding a default max-width fixes the issue.
Good catch. And great to know that someone else can actually figure out how this code works.
Previously the nav would flicker when hovering out due to the max-width transitioning from
max-width: $max-width*(6/$grid-columns);
to an undefinedmax-width
. This only seems to be noticeable in Safari, but was quite bothersome!Adding a default
max-width
fixes the issue.