index.less 395 B

123456789101112131415161718192021222324
  1. @import '../../app.less';
  2. .qr-code-item{
  3. display: inline-block;
  4. position: relative;
  5. .fixed-refresh {
  6. display: none;
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. right: 0;
  11. bottom: 0;
  12. text-align: center;
  13. font-size: 30px;
  14. cursor: pointer;
  15. color: #fff;
  16. background: rgba(0, 0, 0, .5);
  17. }
  18. }
  19. .qr-code-item:hover {
  20. .fixed-refresh {
  21. display: block;
  22. }
  23. }