Latest solutions
Latest comments
- P@masrestu@samuel-jm
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; }