You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a result of #440, component styles are no longer part of the JS bundle. They reside in the extracted react-ui[.development].css file. The order of styles in this stylesheet is incorrect and may cause styling issues.
The reason of the incorrect order is in the call order in src/index.js: first, there are imports (theme, foundation, ⚠️helpers⚠️), then exports (components).
Cascade layers will help keep the styles in correct order, no matter how they are called.
The text was updated successfully, but these errors were encountered:
adamkudrna
changed the title
Leverage CSS cascade layers to user-proof styles order
Leverage CSS cascade layers to fix and user-proof styles order
Mar 6, 2024
This is a follow-up issue of #517.
As a result of #440, component styles are no longer part of the JS bundle. They reside in the extracted
react-ui[.development].css
file. The order of styles in this stylesheet is incorrect and may cause styling issues.The reason of the incorrect order is in the call order in⚠️ helpers ⚠️ ), then exports (components).
src/index.js
: first, there are imports (theme, foundation,Cascade layers will help keep the styles in correct order, no matter how they are called.
The text was updated successfully, but these errors were encountered: