How to add custom CSS In Vflow?

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