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
Right now it's a mix of .scss global files (_variables.scss) and unscoped local .scss files (Header.scss), and inline styles in JSX. The naming conventions for classes also vary between files.
So, we need to:
Name custom (i.e. non-vendor) classes consistently throughout web codebase
Remove all inline styles except calculated color based on theme preference
All components should use same convention to import CSS, whether with 1-1 stylesheets (Header.js, Header.scss) or something else
The text was updated successfully, but these errors were encountered:
Right now it's a mix of .scss global files (_variables.scss) and unscoped local .scss files (Header.scss), and inline styles in JSX. The naming conventions for classes also vary between files.
So, we need to:
The text was updated successfully, but these errors were encountered: