如何从ts导入css样式到更少的角度cli?

时间:2018-10-12 08:20:00

标签: html css angular typescript angular-cli

我需要将.ts文件中的样式插入较少的原因:我有一个网站以及诸如内容管理器面板之类的东西,您可以在其中设置按钮的颜色。

我当然可以在我的html模板中使用此css变量,例如:

  

[style.color] =“ colorVar”

但是也许存在一些更好的解决方案?

1 个答案:

答案 0 :(得分:0)

您可以使用::ng-deep来渗透某些组件并更改样式。

some-component-selector ::ng-deep selector-inside-of-that-some-component {
   //write the sytles here
}