yangfeng
2023-09-15 b823a11d74b6623fadcfab27150cdbb0ad9766f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.app-sidebar {
  position: relative;
  // height: 100%;
  background-color: #314255;
  .box {
    width: 200px;
    .logo-view {
      margin: 40px 20px 10px;
    }
    .el-menu {
      border-right: solid 0px #e6e6e6;
    }
    .el-submenu .el-menu-item {
      min-width: none;
    }
    .icon {
      color: #bfcbd9;
    }
    .el-submenu__title:hover,
    .el-menu-item:focus,
    .el-menu-item:hover {
      background-color: cornflowerblue;
    }
  }
}