Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

About the @grid-float-breakpoint variable in BS 3

In Boostrap 3 documentation I have found this:

Customize the collapsing point

Depending on the content in your navbar, you might need to change the point at which your navbar switches between collapsed and horizontal mode. Customize the @grid-float-breakpoint variable or add your own media query.

Could I define the @grid-float-breakpoint variable in a main.css file or should I generate a new customized boostrap obligatory?

like image 435
ziiweb Avatar asked Aug 20 '13 11:08

ziiweb


1 Answers

@grid-float-breakpoint is a LESS variable, you can't use it in plain CSS nor in SASS. Change the value in customizer, then download your new build.

like image 150
Pavlo Avatar answered Oct 20 '22 06:10

Pavlo