index.css 665 B

12345678910111213141516171819202122232425262728293031
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. .ant-qrcode {
  4. position: relative;
  5. display: inline-block;
  6. padding: 12px;
  7. }
  8. .ant-qrcode > canvas {
  9. display: block;
  10. }
  11. .ant-qrcode-border {
  12. border: 1px solid #f0f0f0;
  13. border-radius: 2px;
  14. }
  15. .ant-qrcode-mask {
  16. position: absolute;
  17. top: 0;
  18. right: 0;
  19. z-index: 10;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. width: 100%;
  25. height: 100%;
  26. text-align: center;
  27. background-color: rgba(255, 255, 255, 0.96);
  28. }
  29. .ant-qrcode-expired {
  30. color: rgba(0, 0, 0, 0.85);
  31. }