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
The current implementation of prefixCssSelectors (ref) doesn't properly handle prefixing css rules in media queries, which results in broken layouts during the initial render until the hydration is finished and styles are re-rendered with JS.
Here's an example of how the current implementation handles media queries
@rohit-gohri, I've discussed this task with my team, and we've agreed to provide a fix either later this week or early next week. Will keep you posted 👍
The current implementation of
prefixCssSelectors
(ref) doesn't properly handle prefixing css rules in media queries, which results in broken layouts during the initial render until the hydration is finished and styles are re-rendered with JS.Here's an example of how the current implementation handles media queries
The issue is that the
jdZmzL
class in the media query has a lower specificity than the initial one, which results in ignoring its styles.The correct result would be as follows
The text was updated successfully, but these errors were encountered: