Is there any base css for any flow app?

I was wondering if there is any base css for a vFlow app.

Any application is not complete until it has right right UX and UI. it will be great help if we could have a base css that we can modify accordingly and paste it in application properties.

@Sunil_Dalal @vipin.verma

1 Like

Yes we can add custom CSS in vFlow, We have recently added in a vFlow APP:

1 Like

Thanks Naveen, but what I asked is any base css template available to quickly modify the template.

1 Like

hello there,
I was not able to find the base css for it but according to me, Vflow uses angular Material library for the elements which comes with its own css which can be overwrite.
you can select the element using its id

div[data-id="<element_id>"]{
background:red;
}

or you can globally change the css by selecting the predefined classes/elements like

.mat-button{
background:red;
} 
app-label{
color:ed;
}
2 Likes