123456789101112131415161718192021222324252627282930313233 |
- uni-cover-image {
- display: block;
- line-height: 1.2;
- overflow: hidden;
- height: 100%;
- width: 100%;
- pointer-events: auto;
- }
- uni-cover-image img {
- width: 100%;
- height: 100%;
- }
- uni-cover-image[hidden] {
- display: none;
- }
- uni-cover-image .uni-cover-image {
- width: 100%;
- height: 100%;
- text-overflow: inherit;
- overflow: inherit;
- white-space: nowrap;
- -webkit-align-items: inherit;
- align-items: inherit;
- -webkit-justify-content: inherit;
- justify-content: inherit;
- -webkit-flex-direction: inherit;
- flex-direction: inherit;
- font-size: 0;
- display: inherit;
- }
|