Files
new_wms_admin/src/layouts/LayoutVertical/index.scss
2025-09-16 16:38:30 +08:00

55 lines
1.5 KiB
SCSS

.el-container {
width: 100%;
height: 100%;
:deep(.el-aside) {
width: auto;
background-color: var(--el-menu-bg-color);
border-right: 1px solid var(--el-border-color-light);
.aside-box {
display: flex;
flex-direction: column;
height: 100%;
transition: width 0.3s ease;
.el-scrollbar {
height: calc(100% - 55px);
.el-menu {
width: 100%;
overflow-x: hidden;
border-right: none;
}
}
.logo {
box-sizing: border-box;
height: 55px;
.logo-img {
width: 28px;
margin-right: 6px;
object-fit: contain;
}
.logo-text {
font-size: 14px;
font-weight: bold;
color: var(--el-logo-text-color);
white-space: nowrap;
}
}
}
}
.el-header {
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
height: 55px;
padding: 0 5px 0 30px;
background-color: var(--el-bg-color);
border-bottom: 1px solid var(--el-border-color-light);
:deep(.tool-bar-ri) {
.toolBar-icon,
.username {
color: var(--el-text-color-primary);
}
}
}
}