@vickygbonorinoSubmitted about 1 year ago
Alexandre Covolan
@covolanAll comments
- @covolanPosted about 1 year ago
Hey vickygbonorino π
Nice work!
Just one thing, the github pages on the solution is wrong. The correct one would be:
https://vickygbonorino.github.io/qr-component/
Congrats on your first challenge complete!π
Marked as helpful0 - @mheyrieSubmitted about 1 year ago
I didn't get the solution 100%.
I was having issues getting the white background. Kindly check out my code and let me know your feedback
@covolanPosted about 1 year agoHi Mheyrie π
Regarding the background issue, one thing that you can do is move the background color to a body style and give the container div a background color of white.
body { background-color: hsl(212, 45%, 89%);; } .container { background-color: white; }
One way to center the content in this case would be to give the body a display of flex and justify and align the content to center, and give the body a height of 100vh
body { display: flex; justify-content: center; align-items: center; height: 100svh; }
Marked as helpful0