# Bug Report ## Environment Zola version: 0.7.0 ## Expected Behavior Live reload should update inline css style tag ## Current Behavior It does reload, but inline css style tag doesn't update its content ## Step to reproduce put the following code in `structure.html` and try updating the corresponding scss in `sass` folder ```html {% set css = load_data(path="public/style.css") %} <style> {{css | safe}} </style> ```