Is your feature request related to a problem? Please describe.
In some cases it's nice to have slightly different CSS styles when developing vs. production.
Describe the solution you'd like
Add a new class devmode to a high level element such as <body> which can then be used to conditionally apply styles through the application.
Describe alternatives you've considered
Adding a setting/flag for this inside my own module.
Additional context
Great for hiding UI elements that are used for debugging/dev purposes. CSS to hide stuff is easier than a bunch of conditions in your JS/HBS.
Is your feature request related to a problem? Please describe. In some cases it's nice to have slightly different CSS styles when developing vs. production.
Describe the solution you'd like Add a new class
devmode
to a high level element such as<body>
which can then be used to conditionally apply styles through the application.Describe alternatives you've considered Adding a setting/flag for this inside my own module.
Additional context Great for hiding UI elements that are used for debugging/dev purposes. CSS to hide stuff is easier than a bunch of conditions in your JS/HBS.