vben
2021-07-25 98749ec6fed0608c01e42f5a13666a9b43a24d6d
index.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" id="htmlRoot">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
@@ -13,8 +13,26 @@
    <link rel="icon" href="/favicon.ico" />
  </head>
  <body>
    <script>
      (() => {
        var htmlRoot = document.getElementById('htmlRoot');
        var theme = window.localStorage.getItem('__APP__DARK__MODE__');
        if (htmlRoot && theme) {
          htmlRoot.setAttribute('data-theme', theme);
          theme = htmlRoot = null;
        }
      })();
    </script>
    <div id="app">
      <style>
        html[data-theme='dark'] .app-loading {
          background-color: #2c344a;
        }
        html[data-theme='dark'] .app-loading .app-loading-title {
          color: rgba(255, 255, 255, 0.85);
        }
        .app-loading {
          display: flex;
          width: 100%;
@@ -22,7 +40,7 @@
          justify-content: center;
          align-items: center;
          flex-direction: column;
          background: #f4f7f9;
          background-color: #f4f7f9;
        }
        .app-loading .app-loading-wrap {