index.module.less 449 B

1234567891011121314151617181920212223242526
  1. .qrcode {
  2. position: relative;
  3. .qrcodeCanvas {
  4. width: 100% !important;
  5. height: 100% !important;
  6. }
  7. .qrcodeLogo {
  8. position: absolute;
  9. top: 50%;
  10. left: 50%;
  11. margin-left: -20px;
  12. margin-top: -20px;
  13. width: 40px !important;
  14. height: 40px !important;
  15. border-radius: 4px;
  16. &.small {
  17. margin-left: -10px;
  18. margin-top: -10px;
  19. width: 20px !important;
  20. height: 20px !important;
  21. }
  22. }
  23. }