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
@screen-xs-max is used to style the dropdown menus when collapsed. In the default situation this works cause @screen-xs-max = @grid-float-breakpoint-1 = 767. This breaks when changing @grid-float-breakpoint (b.e. to 0 for a non-responsive version).
Solution define a new variable: max(0,grid-float-breakpoint-1) and use this stead of screen-xs-max in navbars.less.
@screen-xs-max is used to style the dropdown menus when collapsed. In the default situation this works cause @screen-xs-max = @grid-float-breakpoint-1 = 767. This breaks when changing @grid-float-breakpoint (b.e. to 0 for a non-responsive version).
Solution define a new variable: max(0,grid-float-breakpoint-1) and use this stead of screen-xs-max in navbars.less.
I don't know if the max() function works, see: less/less.js#1371
The text was updated successfully, but these errors were encountered: