I have this simple React app and my footer does not take 100% width (I see small white space on the left and right sides). Can anyone tell me what I’m missing, please?
Here’s LIVE DEMO
Here’s my css:
.App {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.footer {
margin-top: auto;
background-color: #000;
color: #fff;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
padding: 25px 0;
}
Images if my issue:
3