customPreviewImage.wxss 275 B

1234567891011121314
  1. /* components/customPreviewImage/customPreviewImage.wxss */
  2. .preview-body {
  3. width: 100vw;
  4. height: 100vh;
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. z-index: 10001;
  9. background: rgba(0, 0, 0, 0.9);
  10. }
  11. .preview-body image {
  12. width: 100%;
  13. height: 100%;
  14. }