Defining units on settings makes them really rigid, e.g.: ```scss $shell-g-border-radius: 3px; ``` https://github.com/campaignmonitor/shell/blob/master/src/_settings.scss#L208 If we wanted a larger radius we can't do: ```scss $shell-g-border-radius-large: $shell-g-border-radius + 1; ``` Let's review all settings with units.
Defining units on settings makes them really rigid, e.g.:
https://github.com/campaignmonitor/shell/blob/master/src/_settings.scss#L208
If we wanted a larger radius we can't do:
Let's review all settings with units.