I am using Angular 6 in my project and scss. I am getting warnings run my project. It is mostly warnings for svg element style. For example:
This is styles for svg path
element:
.marker-target {
stroke: none;
fill: $dark-gray;
d: path('M 10 0 L 3 5 L 10 10 z'); // here is warning 'Invalid property name d'
}
Or <circle />
and styles for it:
circle {
r: 9 // here is warning 'Invalid property name r'
}
And so on. How i can fix this?