我需要将.ts文件中的样式插入较少的原因:我有一个网站以及诸如内容管理器面板之类的东西,您可以在其中设置按钮的颜色。
我当然可以在我的html模板中使用此css变量,例如:
[style.color] =“ colorVar”
但是也许存在一些更好的解决方案?
答案 0 :(得分:0)
您可以使用::ng-deep
来渗透某些组件并更改样式。
some-component-selector ::ng-deep selector-inside-of-that-some-component {
//write the sytles here
}