Cordobo / angularx-qrcode

A fast and easy-to-use Angular QR Code Generator library with Ivy support
https://cordobo.github.io/angularx-qrcode/
MIT License
473 stars 126 forks source link

Aling #56

Closed mvaipa closed 5 years ago

mvaipa commented 5 years ago

Aling qrcode center page?

Cordobo commented 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/

ezequiel88 commented 3 years ago

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;
}