Angular 13
On my @Component I have this set up for dynamic values. Doesn't work
styles: [
`
.k-daterangepicker .k-dateinput {
width: {{myWidth}};
}
`,
],
How do I change .k-daterangepicker .k-dateinput to a dynamic width for the @Component only?
@HostBinding('style.width.px') get size() { return 450; }. Not in the component decorator, but inside the component class itself