mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
79 lines
1.5 KiB
HTML
79 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>日志中心</title>
|
|
|
|
</head>
|
|
<body>
|
|
<style>
|
|
body, html {
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
*[v-cloak]{
|
|
display: none;
|
|
}
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#app .el-container{
|
|
height: 100%;
|
|
}
|
|
#app .el-menu{
|
|
border-right:none;
|
|
}
|
|
.menubar {
|
|
background-color: #fff;
|
|
width: auto;
|
|
height: 100%;
|
|
transition: width .2s;
|
|
overflow: hidden;
|
|
border-right: solid 1px;
|
|
border-color: lightgray;
|
|
}
|
|
.main{
|
|
background-color:#edf0f3;
|
|
}
|
|
/* html.dark .el-card {
|
|
--el-card-bg-color: var(--el-bg-color-overlay);
|
|
}
|
|
html.dark .main{
|
|
background-color: var(--el-bg-color-overlay);
|
|
}
|
|
|
|
html.dark .database .active,html.dark .database .item:hover{
|
|
background-color:#262727;
|
|
} */
|
|
|
|
ul.el-menu--collapse{
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
|
|
div.el-card__body{
|
|
padding-top: 0px;
|
|
padding-bottom: 10px;
|
|
}
|
|
div.el-table td.el-table__cell{
|
|
padding: 3px 0;
|
|
}
|
|
|
|
main.el-main{
|
|
overflow: hidden;
|
|
}
|
|
|
|
div.el-table th.el-table__cell{
|
|
padding: 4px 0;
|
|
}
|
|
</style>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|