index.less 734 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import '../../style/themes/index';
  2. @import '../../style/mixins/index';
  3. @qrcode-prefix-cls: ~'@{ant-prefix}-qrcode';
  4. .@{qrcode-prefix-cls} {
  5. position: relative;
  6. display: inline-block;
  7. padding: @padding-sm;
  8. &>canvas {
  9. display: block;
  10. }
  11. }
  12. .@{qrcode-prefix-cls}-border {
  13. border: @border-width-base @border-style-base @border-color-split;
  14. border-radius: @border-radius-base;
  15. }
  16. .@{qrcode-prefix-cls}-mask {
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. z-index: 10;
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: center;
  25. width: 100%;
  26. height: 100%;
  27. text-align: center;
  28. background-color: fade(@white, 96%);
  29. }
  30. .@{qrcode-prefix-cls}-expired {
  31. color: fade(@black, 85%);
  32. }