Css file troubles

Hi,

I'm using Radzen in my project and i do some updates in the material.css and materail-base.css of the Radzen project.
This is to adapt the design to our needs and it works fine.
But, i face a trouble with our Git source code manager.
In fact, when i build my project, these two files don't keep the change i made and go back to their initial state.
Is it a way to avoid that ?

Regards,

A good way to avoid that is to store your css overrides in a separate CSS file and load it after the Radzen [theme].css files. Just copy the code that you need to update, paste it in the new file and make your changes. This way you will have latest and greatest [theme].css without loosing any overrides.

<link href="css/material-base.css" rel="stylesheet" />
<link href="css/site.css" rel="stylesheet" /> <!-- Add your CSS overrides here -->

Ok, thanks for your support.

Regards,