Overriding Bootstrap variables in Rails with bootstrap-sass gem

前端 未结 2 786
闹比i
闹比i 2021-01-03 18:23

I am using the bootstrap-sass gem (Bootstrap 3.0) by Thomas McDonald. I\'ve followed the Bootstrap and Rails tutorial by Daniel Kehoe.

I have

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-03 18:52

    You can override variables by simply redefining the variable before the @import directive.

    For example:

    $navbar-default-bg: #312312;
    $light-orange: #ff8c00;
    $navbar-default-color: $light-orange;
    
    @import "bootstrap";
    

提交回复
热议问题