I'm messing around with the CSS files for the first time and trying to test my understanding.
What's the best way to get the new styles to apply so I can test it?
I save all the relevant files, change something in the project, save the project, merge changes from the gateway, refresh the webpage, change the theme but sometimes it doesn't update.
For example, just to test an obvious change, I used this edit to the popup header:
.ia_popup__header {
background-color: var(--seq-1);
color: var(--neutral-100);
border-bottom: var(--containerBorder);
font-size: 0.875rem;
}
The change is made:
But then changing the style sheet again doesn't change the color back.
.ia_popup__header {
background-color: var(--neutral-40);
color: var(--neutral-100);
border-bottom: var(--containerBorder);
font-size: 0.875rem;
}
While I can work around this issue using the Enhanced Stylesheet resource, it would still be nice to know how to get this to work as intended.