Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save realtomaszkula/7206880fd949b51cc6aa1484d35ab59b to your computer and use it in GitHub Desktop.
Save realtomaszkula/7206880fd949b51cc6aa1484d35ab59b to your computer and use it in GitHub Desktop.
@Component({
selector: 'app-root',
template: `
<app-card [style]="style"></app-card>
`,
})
export class AppComponent {
get style() {
return this.sanitizer.bypassSecurityTrustStyle(
`--primary: lightblue; --accent: crimson`
);
}
constructor(private sanitizer: DomSanitizer) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment