Closed mvaipa closed 5 years ago
@mvaipa you can put it into a div-container and add css to align it. Please have a look at the demo repo or for general questions about css visit https://developer.mozilla.org/en-US/
view.html
<div class="qrcodeBox">
<qrcode [qrdata]="qrcode" [width]="200" [elementType]="svg"></qrcode>
</div>
style.css
.qrcodeBox {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
}
Aling qrcode center page?