On smaller screens, the bootstrap navbar menu does not collapse by default when clicking on a menu item.
To fix this issue, I added attributes data-toggle="collapse"
and data-target="#navbar-collapse"
to each menu item so that the menu will collapse properly when items are selected.
However, I noticed some blinking even on larger screens when the navbar items are not in the sandwich menu. This may be due to the collapse animation.
My question is whether there is a way to prevent this blinking or disable the animation using CSS. Although I could potentially stop the animation using jQuery, I would prefer to avoid this option since the application is Angular-based, and I believe this scenario is quite common.