让指南针蓝图和 sass 在 ruby​​ on Rails 中工作

发布于 2024-11-07 06:35:10 字数 325 浏览 0 评论 0原文

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

body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;

    $font-color: #C6C6C6;
}

但是我的文档中的字体没有改变。仅使用 color:#C6C6C6; 效果很好。我在这里缺少什么

I have setup a new project and used compass to generate the blueprint style sheets. I now have the following code in my screen.scss

body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;

    $font-color: #C6C6C6;
}

The font in my document does not change however. Using just color:#C6C6C6; works fine. What am I missing here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生死何惧 2024-11-14 06:35:10

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

$font-color: #C6C6C6;

body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;

  color: $font-color;
}

$font-color is a variable, not the color specification itself, so it should be something like this:

$font-color: #C6C6C6;

body.bp {
  @include blueprint-typography(true);
  @include blueprint-utilities;
  @include blueprint-debug;
  @include blueprint-interaction;

  color: $font-color;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文