Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/components/SignIn/SignIn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,17 @@ export class SignIn extends Component {
<Link to="/quickstart" href="/quickstart">
Signup
</Link>
<div className="footer-copyright" style={{color:"white"}}>
Copy link
Collaborator

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

Copy link
Collaborator

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)

Copy link
Author

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

© 2018 - {new Date().getFullYear()} Boston Children&apos;s Hospital, Red
Hat, Massachusetts Open Cloud, Boston University. All rights reserved.
</div>
</p>

</Form>

</CardBody>
</Card>

</div>
</div>
);
Expand Down