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
/// # Global modifiers/// These modify the behavior of any element////// **.--globalModifierName-value{}**/// ```css/// .--maxWidth-none{}/// ```/// Just like the component modifiers but these work in any element/// Some modifier could be conditionated to the presence of another one/// ```css/// .--theme-light.--shadow{}/// ```//////@groupmodifiers///@example njk/// <div class="flx --flxColumn">/// TODO: modifier example/// </div>/// # Global unions/// Condense most common modifiers of rules that require multiple parameters////// **.--globalUnionName-firstValue-SecondValue{}**/// ```css/// .--flxAlign-center-stretch{}/// ```/// As any other union but work in any element/// If both values are equal the could be merged/// ```css/// /** Long version *//// .--flxAlign-center-center{}////// /** Short version *//// .--flxAlign-center{}/// ```//////@groupunions///@example njk/// <div class="flx --flxColumn">/// TODO: union example/// </div>
The text was updated successfully, but these errors were encountered:
/ </div>
ui/packages/styles/src/modifiers/summary.scss
Line 40 in 50ab5f5
The text was updated successfully, but these errors were encountered: