index.module.scss 632 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .A4Scene {
  2. width: 100%;
  3. height: 100%;
  4. overflow: hidden;
  5. :global {
  6. .back {
  7. position: fixed;
  8. top: 20px;
  9. left: 20px;
  10. width: 70px;
  11. height: 70px;
  12. display: flex;
  13. align-items: center;
  14. justify-content: center;
  15. cursor: pointer;
  16. & > img {
  17. width: 100%;
  18. height: 100%;
  19. object-fit: cover;
  20. }
  21. }
  22. iframe {
  23. width: 100%;
  24. height: 100%;
  25. border: none;
  26. }
  27. }
  28. }
  29. @media screen and (max-width: 768px) {
  30. .A4Scene {
  31. :global {
  32. .back {
  33. left: 4px;
  34. width: 55px;
  35. height: 55px;
  36. }
  37. }
  38. }
  39. }