After making changes to the sass file in Sencha and compiling it, I cleared the iPhone simulator and cleaned the project.
Despite seeing the new styles applied in the browser, they do not reflect on the iPhone simulator or the actual device.
The change I made was quite small:
from:
.x-desktop .x-title .x-innerhtml{padding: 0;padding:0;color:fff;}
to:
.x-desktop .x-title .x-innerhtml{padding: 0;padding:0;color:
#52A5D6;}
My questions are:
- What could be causing this issue? Solved: if you look at the first class it belongs to x-desktop...
- How can I debug the sass if the styles have been transferred but not applied on the device?
Appreciate any help. Thanks!