Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @covolan

    Posted

    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 helpful

    0
  • Mheyrieβ€’ 70

    @mheyrie

    Submitted

    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

    @covolan

    Posted

    Hi 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 helpful

    0