我在common.scss文件中更改了navbar-background Css Role 但导航栏的背景没有改变。
.navbar-background { background: linear-gradient(to top, #5adb43, #51b93f,#748930); }
我将此代码添加到common.scss但它没有用!
答案 0 :(得分:0)
根据Zebble文档,您的方法是正确的:http://zebble.net/docs/navigationbar-class
要更改导航栏背景颜色,您可以更改此规则以更改颜色。但你在linar-gradiant方法参数中犯了一个错误。
您在方法中添加了一个额外的参数,因此您的代码无效。我为你写了一个正确的。
您可以在 common.scss
中添加以下内容.navbar-background { background: linear-gradient(to bottom, #5adb43, #51b93f); }