index.wxss 554 B

123456789101112131415161718192021222324252627282930
  1. /* components/novelPlugin/customParagraph/index.wxss */
  2. .custom-paragraph-container {
  3. width: 100%;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. /* padding: 40px 0; */
  8. box-sizing: border-box;
  9. }
  10. .qrcode-box {
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .qrcode-image {
  17. width: 300rpx;
  18. height: 300rpx;
  19. border-radius: 10rpx;
  20. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
  21. }
  22. .qrcode-tip {
  23. margin-top: 16rpx;
  24. font-size: 28rpx;
  25. color: #999999;
  26. text-align: center;
  27. }