-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed Instances of useStyles, Replaced With SCSS #440
Conversation
@@ -241,7 +215,6 @@ const SettingsBase = observer((props) => { | |||
required | |||
disabled={true} | |||
aria-required="true" | |||
className={input.root} | |||
style={{ backgroundColor: '#e0e0e0' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are still quite a few lines like this around (style=[something]) that I think can also be moved to scss files. Especially ones like line 158 of this file where lots of styling is done inline.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! I pushed a commit to remove |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolves #420
Removed all instances of
useStyles
I could find, including in thesample.js
component (thought I'm not sure where that appears in production).