index.less 619 B

12345678910111213141516171819202122232425262728293031323334
  1. .preview-wrapper {
  2. padding: 20px 40px;
  3. height: ~"calc(100vh - 320px)";
  4. width: 100%;
  5. overflow: scroll;
  6. .loading-process {
  7. width: 50%;
  8. position: absolute;
  9. top: 50%;
  10. transform: translate(-50%, -50%);
  11. left: 50%;
  12. .load-text {
  13. line-height: 28px;
  14. }
  15. }
  16. .preview-inner {
  17. width: 100%;
  18. height: fit-content;
  19. position: relative;
  20. .preview-mark {
  21. position: fixed;
  22. inset: 0;
  23. width: 100%;
  24. height: 100%;
  25. z-index: 999;
  26. opacity: 0.7;
  27. pointer-events: none;
  28. user-select: none;
  29. }
  30. }
  31. .error-wrapper {
  32. height: 100%;
  33. }
  34. }