No Description

index.html 474B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Demo</title>
  6. <style>
  7. html,body{
  8. height: 100%;
  9. margin: 0;
  10. padding: 0;
  11. font-family: Helvetica;
  12. background-color: #fff;
  13. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  14. }
  15. #root{
  16. position: relative;
  17. }
  18. .demo{
  19. height: 100%;
  20. }
  21. .preview-button,
  22. .modal-button{
  23. width: auto;
  24. padding: 0 10px !important;
  25. font-size: 14px !important;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div id="root"></div>
  31. </body>
  32. </html>