cover-image.css 592 B

123456789101112131415161718192021222324252627282930313233
  1. uni-cover-image {
  2. display: block;
  3. line-height: 1.2;
  4. overflow: hidden;
  5. height: 100%;
  6. width: 100%;
  7. pointer-events: auto;
  8. }
  9. uni-cover-image img {
  10. width: 100%;
  11. height: 100%;
  12. }
  13. uni-cover-image[hidden] {
  14. display: none;
  15. }
  16. uni-cover-image .uni-cover-image {
  17. width: 100%;
  18. height: 100%;
  19. text-overflow: inherit;
  20. overflow: inherit;
  21. white-space: nowrap;
  22. -webkit-align-items: inherit;
  23. align-items: inherit;
  24. -webkit-justify-content: inherit;
  25. justify-content: inherit;
  26. -webkit-flex-direction: inherit;
  27. flex-direction: inherit;
  28. font-size: 0;
  29. display: inherit;
  30. }