cover-view.css 583 B

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