顶栏背景颜色不随SASS而变化

时间:2016-01-17 18:32:29

标签: html css

我正在尝试更改Zurb Foundation 6中顶栏的背景颜色。我想通过更改_settings.scss将其从#e6e6e6更改为#333333。我更改了以下内容:

// Background color for the top bar
$topbar-bg-color: $oil;
$oil         : #333333;

我SASS编译了脚本,但顶栏的背景仍然是#e6e6e6。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

我想应该改变变量定义的顺序:

$oil         : #333333;
// Background color for the top bar
$topbar-bg-color: $oil;