mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-19 05:48:08 +08:00
23 lines
816 B
HTML
23 lines
816 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0" />
|
|
<title></title>
|
|
<style>
|
|
/* 滚动条 */
|
|
::-webkit-scrollbar{width:8px;height:4px}
|
|
::-webkit-scrollbar-button{width:10px;height:0}
|
|
::-webkit-scrollbar-track{background:0 0}
|
|
::-webkit-scrollbar-thumb{background:#E6FFEE;-webkit-transition:.3s;transition:.3s}
|
|
::-webkit-scrollbar-thumb:hover{background-color:#07C160}
|
|
::-webkit-scrollbar-thumb:active{background-color:#07C160}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|