yangfeng
2023-08-16 8191562f28c525373941af4638c30c8f8e74c245
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.app-sidebar {
  position: relative;
  // height: 100%;
  background-color: #314255;
  .box {
    width: 200px;
    .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;
    }
  }
}