feat: admin console dark theme

This commit is contained in:
RockYang
2024-04-26 18:10:17 +08:00
parent 468b48151f
commit 5e0be4d10e
17 changed files with 197 additions and 83 deletions

View File

@@ -37,6 +37,19 @@ body {
transition: left .3s ease-in-out;
background: #f0f0f0;
::-webkit-scrollbar {
width: 8px; /* */
}
::-webkit-scrollbar-thumb {
background-color: #666666;
border-radius 8px
}
::-webkit-scrollbar-thumb:hover {
background-color: #999999;
}
.content {
width: auto;
height: 100vh;
@@ -45,14 +58,8 @@ body {
.container {
padding: 15px 20px 30px 20px;
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
background: #ffffff;
margin-bottom 80px
.handle-box {
margin-bottom: 20px;
}
}
.crumbs {
@@ -60,7 +67,7 @@ body {
}
.el-table th {
background-color: #f5f7fa !important;
background-color: #f5f7fa;
}
.pagination {
@@ -142,6 +149,23 @@ body {
display: none !important;
}
}
.dark {
background: var(--el-bg-color);
.container {
background: var(--el-bg-color);
}
.crumbs {
margin: 10px 0;
}
.el-table th {
background-color: var(--el-fill-color-darker);
}
}
}
.content-collapse {