What does :global (colon global) do?

This operator is used in CSS Modules. Modular CSS uses a CSS Modules compiler to scope CSS styles within their respective modules (e.g., React component). Here’s an example from a React module (in the file ErrorMessaging.less for the ErrorMessaging.jsx React component): :global(.ocssContainer) { .ui_column { padding-left: 0; } } This gets compiled into: .ErrorMessaging__alertContainer–1I-Cz .ocssContainer … Read more