no message

Former-commit-id: 53ff203f46a9e4a9efa4f88137cf7684b6dc7b2f
Former-commit-id: c837c34a1e62860cd1b31a914aa9b4a1a89bfac6
Former-commit-id: 3765b26cbcd41e810f54f5cc3bc386369dfca29d
This commit is contained in:
李杨
2018-01-15 18:40:14 +08:00
parent 8c0d17166d
commit f17ea3f313
4 changed files with 55 additions and 9 deletions

View File

@@ -1,5 +1,7 @@
@import '~@/assets/style/public.scss';
$color: #409EFF;
// 默认主题
.layout-main {
&.default {
@@ -16,13 +18,57 @@
// [布局]
.el-header {
padding: 0px;
.logo-group {
width: 200px;
float: left;
text-align: center;
img {
height: 60px;
}
}
// 顶栏菜单
.el-menu {
float: left;
border-bottom: none;
background-color: transparent;
.el-menu-item {
border-bottom: none;
border-top: 2px solid $color-bg;
&:hover {
background-color: transparent;
}
&.is-active {
border-bottom: none;
border-top: 2px solid $color;
background-color: transparent;
}
}
}
}
// 顶栏下面
.el-container {
// 侧边栏
.el-aside {
.el-menu {
background-color: transparent;
.el-menu-item {
&:focus {
background-color: transparent;
}
&:hover {
background-color: transparent;
}
}
.el-submenu__title {
&:hover {
background-color: transparent;
}
}
}
}
.el-main {
padding-top: 0px;
padding-left: 0px;
}
}
}