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

  • NRR 460

    @masrestu

    Submitted

    What are you most proud of, and what would you do differently next time?

    I will try to use other technique next time.

    What challenges did you encounter, and how did you overcome them?

    Dividing section, see youtube tutorial.

    What specific areas of your project would you like help with?

    Dividing section

    P
    Samuel 90

    @samuel-jm

    Posted

    Nice solution, if you want to position your attribution independently from the qr component you could set its position to absolute and use top, right, etc., this will remove it from normal flow and allow the qr component to be centered on the viewport regardless of where the attribution is placed. Something like:

    .attribution {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    }
    

    Marked as helpful

    0