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