Hello i have been getting this error every time i save my css file, but when i refresh page, it reflects changes
It started after i commented a block of code, save and then reverted the changes using ctrl+z command and then saving again. it showed this error and then showed it every time after (but still does save, just needs to reload)
this is the original block of code
.cart-popup-item__title {
color: var(–color-text);
font-size: calc(((var(–font-size-base) + 2) / (var(–font-size-base))) * 1em);
font-family: var(–font-stack-header);
font-weight: var(–font-weight-header);
margin-bottom: 0; }
this is what i commented
.cart-popup-item__title {
color: var(–color-text);
font-size: calc(((var(–font-size-base) + 2) / (var(–font-size-base))) * 1em);
/font-family: var(–font-stack-header);/
/font-weight: var(–font-weight-header);/
margin-bottom: 0; }
Also i made a backup before doing this, but every time i publish the backup, the site breaks and i have to return to the one that i was modifying.
