webview.wxss 295 B

1234567891011121314151617181920212223
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. }
  6. .loading {
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. width: 100%;
  11. height: 100%;
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. background-color: #fff;
  16. z-index: 100;
  17. }
  18. web-view {
  19. width: 100%;
  20. height: 100%;
  21. }