I have some experience with Jsx and today I was looking at a react project. hoping I can make some changes to the style. thinking it's like react-native, but it had bootstrap and I coulden't wrap my head around it even after spending an hour on their website.
I just wanted move a container to the left. which I thought is simple but it so tedious with bootstrap.
<div className="container" >
how about the styling below? what does that even mean. how do I decipher that?
<div className="shadow component rounded p-5 col-sm-10 col-md-6 mt-4">
anyone here have a quick cheat sheet or nice tutorial to share, and maybe can give me a quick fix on how to move that container left for now while I try to learn more of bootstrap or maybe depreciate it completely idk.
render() {
return (
***//this box is in middle of the screen and I want to push it a little to the left***.
<div className="container" >
<Notifications />
<div className="row">
<div className="shadow component rounded p-5 col-sm-10 col-md-6 mt-4">
<form noValidate onSubmit={this.onSubmit}>
<h1 className="h3 text-center mb-3 font-weight-normal h1"
.
.
.
.
.