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.
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.
Thanks Naveen, but what I asked is any base css template available to quickly modify the template.
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;
}