Created
December 22, 2020 10:57
-
-
Save NetanelBasal/794a0b2a8c4fc40dacdc5b00b6fdde42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
template: ` | |
<h1 [style.--color]="color">CSS vars works!</h1> | |
`, | |
styles: [ | |
` | |
h1 { | |
color: var(--color); | |
} | |
` | |
] | |
}) | |
export class MyComponent { | |
color = "hotpink"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Might want to add:
selector: 'app-root',
under @
Component({
, like so:Otherwise the error below will show up: