Easiest way to change when Bootstrap navbar collapses (using bootstrap gem)

岁酱吖の 提交于 2019-12-04 16:54:47

Did you read some info about configuration this gem?

Import "bootstrap" in your SCSS file of choice to get all of Bootstrap's styles, mixins and variables!

@import "bootstrap";

Need to configure a variable or two? Simply define the value of the variable you want to change before importing Bootstrap. Sass will respect your existing definition rather than overwriting it with the Bootstrap defaults.

$navbarCollapseWidth: 769px;
@import "bootstrap";

Or that is not what you need?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!