让指南针蓝图和 sass 在轨道上的红宝石中工作



我已经设置了一个新项目并使用指南针生成蓝图样式表。我现在的屏幕中有以下代码.scss

body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;
    $font-color: #C6C6C6;
}

但是,我的文档中的字体不会更改。仅使用color:#C6C6C6;就可以正常工作。我在这里错过了什么

$font颜色是一个变量,而不是颜色规范本身,所以它应该是这样的:

$font-color: #C6C6C6;
body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;
  color: $font-color;
}

相关内容

  • 没有找到相关文章

最新更新