让指南针蓝图和 sass 在 ruby on Rails 中工作
我已经设置了一个新项目并使用指南针来生成蓝图样式表。现在,我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$font-color 是一个变量,而不是颜色规范本身,所以它应该是这样的:
$font-color is a variable, not the color specification itself, so it should be something like this: