style.module.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .QrcodeIcon {
  2. background-image: url(~@/app/components/develop/secret-key/assets/qrcode.svg);
  3. background-position: center;
  4. background-repeat: no-repeat;
  5. }
  6. .QrcodeIcon:hover {
  7. background-image: url(~@/app/components/develop/secret-key/assets/qrcode-hover.svg);
  8. background-position: center;
  9. background-repeat: no-repeat;
  10. }
  11. .QrcodeIcon.show {
  12. background-image: url(~@/app/components/develop/secret-key/assets/qrcode-hover.svg);
  13. background-position: center;
  14. background-repeat: no-repeat;
  15. }
  16. .qrcodeimage {
  17. position: relative;
  18. object-fit: cover;
  19. }
  20. .scan {
  21. margin: 0;
  22. line-height: 1rem;
  23. font-size: 0.75rem;
  24. }
  25. .download {
  26. position: relative;
  27. color: #155eef;
  28. font-size: 0.75rem;
  29. line-height: 1rem;
  30. }
  31. .text {
  32. align-self: stretch;
  33. display: flex;
  34. flex-direction: row;
  35. align-items: center;
  36. justify-content: center;
  37. white-space: nowrap;
  38. gap: 4px;
  39. }
  40. .qrcodeform {
  41. border: 0.5px solid #eaecf0;
  42. display: flex;
  43. flex-direction: column;
  44. margin: 0 !important;
  45. margin-top: 4px !important;
  46. margin-left: -75px !important;
  47. width: fit-content;
  48. position: relative;
  49. border-radius: 8px;
  50. background-color: #fff;
  51. box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08),
  52. 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  53. overflow: hidden;
  54. align-items: center;
  55. justify-content: center;
  56. padding: 15px;
  57. gap: 8px;
  58. }