Is there a chance I can mix using Tailwind's utility (inline) classes with the JavaScript styles/classes module?
<div className={ classes.preference }>
together with:
<div className="bg-grey-light h-screen">
You can use template literals to concatenate constants and variables.
Example:
<div className={`bg-grey-light h-screen ${classes.preference}`}>
...
</div>