| 1234567891011121314151617181920212223 |
- .container {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .loading {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #fff;
- z-index: 100;
- }
- web-view {
- width: 100%;
- height: 100%;
- }
|