add custom CSS to application properties on Vflow
1 Like
To add a CSS property, you need to add it in the custom CSS section. Itβs important to note that the data ID should be unique.
If you want to apply CSS to a div child, there should be a space between the div data ID and class name. For example: div[data-id=β1694405748849529β] .full-height {color: βredβ;}
On the other hand, if you want to apply a CSS property to the class name of the div itself, there should be no space between the div and class name. For example: div[data-id=β1694405748849529β].ng-star-inserted {color: βredβ;}
1 Like