引导程序:如何访问颜色变量("Error: Undefined variable")?



为什么我得到以下错误?

Error: Undefined variable: "$red-100"

…当我尝试使用任何Bootstrap的颜色变量,像这样:

div {
background-color: $red-100;
}

在我的Gemfile,我有:

gem 'bootstrap'
在我的application.scss文件中,我有:
@import "bootstrap";

为了访问这些颜色变量缺少什么?

编辑:这些颜色变量列在:https://github.com/twbs/bootstrap-rubygem/blob/master/assets/stylesheets/bootstrap/_variables.scss

编辑2:我使用Bootstrap v4.6.0.

我唯一能看到的是https://github.com/twbs/bootstrap-rubygem/blob/master/assets/stylesheets/bootstrap/_variables.scss是v5.0.0beta2,可能你不使用那个版本。

我查看了v4.6.0, https://github.com/twbs/bootstrap-rubygem/blob/v4.6.0/assets/stylesheets/bootstrap/_variables.scss和$red-100没有显示。

相关内容

  • 没有找到相关文章

最新更新