Stop text2qr overflowing past window dimensions

This commit is contained in:
Oliver Blanthorn 2023-12-04 13:02:46 +01:00
parent f13f16cc5d
commit b5507f3b80
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -3,6 +3,11 @@ div.container {
flex-direction: column;
}
#qr-canvas img {
max-height: 100vh;
max-width: 100vw;
}
div#qr-canvas {
text-align: center;
}