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
When using the range or number control, it applies a numeric value directly as the CSS variable, however in most cases this isn't going to be applicable in most CSS variables.
'section-spacing-sm': {control: 'range',},
Using the range sets: --section-spacing-sm: 5;. It would be fantastic if a unit value could be provided, for example:
When using the
range
ornumber
control, it applies a numeric value directly as the CSS variable, however in most cases this isn't going to be applicable in most CSS variables.Using the range sets:
--section-spacing-sm: 5;
. It would be fantastic if a unit value could be provided, for example:This way when the CSS variable is set, it appropriately appends the unit type:
--section-spacing-sm: 5px;
The text was updated successfully, but these errors were encountered: