Scarlett Hobbs
Results
2
comments of
Scarlett Hobbs
Our projects at work use CSS variables for their advantages over SASS variables—e.g. they're trivially configurable. [LogRocket writes about why they use them here](https://blog.logrocket.com/how-to-create-better-themes-with-css-variables-5a3744105c74/), for example. I would very much...
In Angular, I use enums to constrain the values that can be provided to a component. A simplistic example is the following: ```ts public enum FeedbackMessageTheme { Error = 'error',...