-
Notifications
You must be signed in to change notification settings - Fork 49
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
added copyrights to the signin page #276
base: master
Are you sure you want to change the base?
Conversation
aryabyte21
commented
Apr 14, 2022
@jennydaman, @PintoGideon please review this. |
Signed-off-by: AryaArunB <[email protected]>
src/components/SignIn/SignIn.jsx
Outdated
@@ -150,10 +150,17 @@ export class SignIn extends Component { | |||
<Link to="/quickstart" href="/quickstart"> | |||
Signup | |||
</Link> | |||
<div className="footer-copyright" style={{color:"white"}}> |
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.
Using the CSS class footer-copyright
here is a bad practice, while it's true that CSS classes are global, we would like to have some notion of scope. I would suggest either moving the class out of src/components/Footer/Footer.css
and to some other CSS file which is explicitly designated to contain global classes, or copy the class to SignIn.css
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.
Scoping would protect against a fix for #151 (which enforces scoping)
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.
Thanks for the feedback @jennydaman I have copied the class to SignIn.css
Signed-off-by: AryaArunB <[email protected]>
@jennydaman is there something more that you'd like me to do in this pr? |