ionic2:不能在variables.scss中设置<ion-content>背景颜色

时间:2017-03-20 01:58:49

标签: sass styles ionic2

in html:

<ion-content class="bg-style">

在variables.scss中:

.bg-style {
    background-color: #f5f0eb;
}

上面的代码不起作用,但它可以在<a> <div>等其他标签中工作,当我将样式文件(.scss,如test.scss)放在与...相同的路径中时html文件,它也可以正常工作。我不知道我的问题是否清楚,谢谢你的帮助。

3 个答案:

答案 0 :(得分:8)

使用app.scss文件而不是variables.scss

app.scss

  .bg-style {
        background: #f5f0eb;
    }

答案 1 :(得分:6)

我建议你覆盖离子变量

$background-color: #f5f0eb !default;
$background-ios-color: #f5f0eb !default;
$background-md-color: #f5f0eb !default;

查看此网址了解更多详情 - link

答案 2 :(得分:2)

app.scss文件中添加样式

.fixed-content{
    background-color: #f5f0eb;
}

它将适用于所有页面,您不必为每个ion-content

添加一个类