changes in style.css reset when clean install vaadin-maven project

Hello, I recently shifted to Vaadin and I am using Maven to handle build and dependency management. I recently bugged by very weird issue related to css. I noticed whenever I run mvn clean install on my project, all my changes inside style.css lost ! however changes inside style.scss retained. How can I maintain the changes inside style.css ?

Hi, I think you should not make changes in the style.
css
since it is automatically compiled (generated from the scracth) from the style.
scss
in the maven install. Please, use *.scss files for your own css styles.

Johannes Tuikkala:
Hi, I think you should not make changes in the style. css since it is automatically compiled (generated from the scracth) from the style. scss in the maven install. Please, use *.scss files for your own css styles.

Its working. Thanks a lot for the solution.