mp.scss 342 B

123456789101112131415161718192021222324
  1. /* pages/mp/mp.wxss */
  2. .mp_container {
  3. width: 100vw;
  4. height: 100vh;
  5. display: block;
  6. position: relative;
  7. }
  8. .background {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .qrcode {
  13. // background-color: yellow;
  14. width: 300rpx;
  15. height: 300rpx;
  16. position: absolute;
  17. top: 32%;
  18. left: 50%;
  19. transform: translateX(-50%)
  20. }