index.html 903 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="renderer" content="webkit" />
  7. <meta
  8. name="viewport"
  9. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
  10. />
  11. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  12. <title><%= webpackConfig.name %></title>
  13. <style>
  14. html::-webkit-scrollbar {
  15. width: 10px;
  16. height: 1px;
  17. }
  18. html::-webkit-scrollbar-thumb {
  19. border-radius: 10px;
  20. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  21. background: #535353;
  22. }
  23. html::-webkit-scrollbar-track {
  24. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  25. border-radius: 10px;
  26. background: #ededed;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div id="app"></div>
  32. </body>
  33. </html>