Reputation: 63
I am doing the thinkster react-redux portion of their full stack app tutorial. All is going well but there is some default styling that was done that stays consistent as I add aspects to the tutorial. For example, the homepage has a header that is green, however, in the tutorial, this was never set. I am wondering if maybe it is being generated within the API being used? If that's the case, where is the best place in my project t override that? If not, where is all of this styling and where is the best place to start incorporating my own? Here's the link to the directory of the finished project. Second is my code. Its probably not necessary but just in case! Thanks
Upvotes: 1
Views: 48
Reputation: 56
Create a css file, App.css in src/styles folder. Add the below code to it
.container { color: black; }
Import the same in your App.js as
import '../styles/App.css';
You will see the app name color being overwritten instantly.
Upvotes: 1