Styling your App
A number of good CSS frameworks exist out there. However, you will make use of bootstrap in this code lab. Bootstrap is an open source toolkit for developing with HTML, CSS, and JS. You can quickly prototype your ideas or build your entire app with the Sass variables and mixins, responsive grid system, extensive pre-built components, and powerful plugins based on jQuery.
Step 1
Open up public/index.html
in your text editor. Pull in bootstrap and add it just after the favicon link.
Step 2
Open up src/App.css
and replace it with the styling snippet below:
Now, we have all the styling needed for your app.
Last updated